:root {
  --bg: #070b12;
  --bg-2: #0b111d;
  --panel: rgba(8, 16, 28, 0.74);
  --line: rgba(45, 219, 255, 0.34);
  --line-soft: rgba(45, 219, 255, 0.16);
  --text: #f3fbff;
  --muted: #91a3b5;
  --primary: #2dd8ff;
  --primary-2: #7f5cff;
  --pink: #ff238c;
  --shadow: 0 0 28px rgba(45, 216, 255, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(127, 92, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 12% 28%, rgba(45, 216, 255, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Rajdhani", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 18, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 64px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-mark img {
  width: 92px;
  max-width: none;
}

.brand-copy span,
.footer-brand {
  display: block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-shadow: 0 0 18px rgba(45, 216, 255, 0.72);
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.28em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a,
.phone-link {
  color: rgba(243, 251, 255, 0.82);
  transition: color 180ms ease;
}

.nav-links a:hover,
.phone-link:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.phone-link svg {
  width: 18px;
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-2) 55%, var(--pink));
  box-shadow: var(--shadow);
}

.btn-outline {
  color: var(--primary);
  background: rgba(45, 216, 255, 0.04);
}

.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.btn svg {
  width: 18px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.grid-overlay,
.section-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 216, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 216, 255, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.32;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 11, 18, 0.32), rgba(7, 11, 18, 0.72), var(--bg));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 126px 0 96px;
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(8, 16, 28, 0.48);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 18px var(--primary);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
}

h1 {
  margin: 34px auto 24px;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 700;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(120deg, var(--primary), var(--primary-2), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero p {
  width: min(680px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}

.service-strip {
  margin-top: 84px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 16, 28, 0.62);
  box-shadow: var(--shadow);
}

.service-strip div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-strip div:hover {
  background: rgba(45, 216, 255, 0.06);
}

.service-strip svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  box-sizing: content-box;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-inner,
.about-grid,
.contact-grid {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.cyber-panel,
.cyber-image,
.contact-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.82), rgba(8, 16, 28, 0.58));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), var(--shadow);
}

.about-copy {
  padding: 42px;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 58px);
  color: var(--text);
  text-shadow: 0 0 22px rgba(45, 216, 255, 0.34);
}

.about-copy h2 {
  color: var(--primary);
}

.copy-stack {
  display: grid;
  gap: 20px;
  color: rgba(243, 251, 255, 0.84);
}

.copy-stack p,
.section-heading p,
.service-card p,
.contact-section p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cyber-image {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}

.cyber-image.offset {
  margin-top: 36px;
}

.services-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 18, 0.72);
  overflow: hidden;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 18, 0.78);
}

.services-section .section-inner {
  z-index: 1;
}

.section-heading {
  margin-bottom: 60px;
  text-align: center;
}

.eyebrow,
.plan-tag {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-heading p {
  width: min(680px, 100%);
  margin: 0 auto;
}

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

.service-card,
.price-card {
  padding: 28px;
  transition: transform 180ms ease;
}

.service-card:hover,
.price-card:hover {
  transform: translateY(-5px);
}

.service-card > svg {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--primary);
}

h3 {
  margin-bottom: 14px;
  font-size: 27px;
}

.pricing-grid,
.featured-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.featured-plans {
  margin-bottom: 26px;
}

.price-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(45, 216, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(45, 216, 255, 0.12), rgba(8, 16, 28, 0.72)),
    var(--panel);
}

.price {
  margin: 16px 0 24px;
  color: var(--primary);
  font-size: 42px;
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

li {
  position: relative;
  padding-left: 24px;
  margin: 12px 0;
  color: rgba(243, 251, 255, 0.86);
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.price-card .btn {
  margin-top: auto;
}

.pricing-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-list {
  padding: 28px;
}

.pricing-list h3 {
  margin-bottom: 22px;
  color: var(--primary);
  text-shadow: 0 0 18px rgba(45, 216, 255, 0.42);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(45, 216, 255, 0.14);
}

.price-row span {
  color: rgba(243, 251, 255, 0.86);
}

.price-row strong {
  color: var(--primary);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.pricing-note {
  margin-bottom: 18px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(45, 216, 255, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(255, 35, 140, 0.08), transparent 42%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 48px;
}

.contact-actions {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-tile {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 18px;
}

.contact-tile svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  box-sizing: content-box;
}

.contact-tile span {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-tile strong {
  font-size: 22px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(2, 8, 15, 0.72);
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 14px 16px;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 216, 255, 0.13);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary) 50%),
    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.ticket-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    linear-gradient(135deg, rgba(45, 216, 255, 0.11), transparent 44%),
    linear-gradient(315deg, rgba(255, 35, 140, 0.1), transparent 42%),
    var(--bg);
}

.ticket-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 11, 18, 0.24), var(--bg));
}

.ticket-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
}

.ticket-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 82px);
}

.ticket-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 21px;
}

.ticket-summary {
  padding: 30px;
}

.ticket-summary h2 {
  margin: 10px 0 20px;
  font-size: 36px;
}

.summary-row {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-top: 1px solid rgba(45, 216, 255, 0.16);
}

.summary-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-row strong {
  color: var(--text);
  font-size: 20px;
}

.ticket-section {
  padding-top: 72px;
}

.ticket-form {
  display: grid;
  gap: 22px;
  padding: 34px;
}

.form-section-heading h2 {
  margin-bottom: 0;
}

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

.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 42px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .nav-links,
  .phone-link {
    display: none;
  }

  .service-strip,
  .card-grid,
  .pricing-grid,
  .featured-plans,
  .pricing-list-grid,
  .about-grid,
  .contact-grid,
  .ticket-hero-inner,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 54px;
    height: 42px;
  }

  .header-actions .btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 78px 0 72px;
  }

  h1 {
    font-size: 46px;
  }

  .hero p {
    font-size: 18px;
  }

  .service-strip {
    margin-top: 56px;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .about-copy,
  .service-card,
  .price-card,
  .pricing-list,
  .contact-form {
    padding: 24px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-row strong {
    text-align: left;
    white-space: normal;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .cyber-image.offset {
    margin-top: 0;
  }

  .contact-tile strong {
    font-size: 19px;
  }
}
