:root {
  color-scheme: dark;
  --bg: #080a0f;
  --bg-soft: #111620;
  --panel: #151b27;
  --panel-light: #1d2635;
  --text: #f6f8fb;
  --muted: #aab4c3;
  --line: rgba(255, 255, 255, 0.12);
  --red: #ff344f;
  --cyan: #35d6ff;
  --lime: #b7f261;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px clamp(18px, 5vw, 64px);
  background: rgba(8, 10, 15, 0.68);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 15, 0.92);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(142px, 15vw, 220px);
  height: auto;
  aspect-ratio: 792 / 270;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.38));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: #dfe6ef;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 64px) 38px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 15, 0.9), rgba(8, 10, 15, 0.32) 54%, rgba(8, 10, 15, 0.74)),
    url("https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=2200&q=86") center/cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: 108px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.hero-text,
.section-copy p,
.section-heading p,
.package-card p,
.team-card p,
.site-footer {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 640px;
  font-size: 1.11rem;
}

.hero-actions,
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 18px 42px rgba(255, 52, 79, 0.28);
}

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

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(920px, 100%);
  border: 1px solid var(--line);
  background: rgba(17, 22, 32, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  background: var(--bg);
}

.section-copy {
  max-width: 620px;
}

.service-grid,
.package-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

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

.service-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  background: var(--cyan);
  color: #041017;
  border-radius: 8px;
  font-weight: 950;
}

.packages {
  background:
    linear-gradient(180deg, rgba(53, 214, 255, 0.08), transparent 340px),
    var(--bg-soft);
}

.section-heading {
  display: grid;
  max-width: 820px;
  margin-bottom: 36px;
}

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

.package-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-light), var(--panel));
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.package-card.featured {
  border-color: rgba(255, 52, 79, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 52, 79, 0.26), transparent 52%),
    linear-gradient(180deg, var(--panel-light), var(--panel));
}

.package-card.custom {
  border-color: rgba(183, 242, 97, 0.44);
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-meta {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.package-card strong {
  display: block;
  color: white;
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  line-height: 1.1;
}

.package-button {
  display: inline-flex;
  min-height: 44px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--red);
  background: var(--red);
  color: white;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255, 52, 79, 0.18);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.package-button:hover,
.package-button:focus-visible {
  box-shadow: 0 18px 38px rgba(255, 52, 79, 0.24);
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.team {
  background: var(--bg);
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.92) contrast(1.05);
}

.team-card:nth-child(2) img {
  object-position: center 36%;
}

.team-placeholder {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 4;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(53, 214, 255, 0.22), rgba(255, 52, 79, 0.16)),
    var(--panel-light);
}

.team-placeholder::before {
  position: absolute;
  width: 58%;
  height: 58%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.14) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(255, 255, 255, 0.14) 48% 52%, transparent 53%);
  border-radius: 8px;
  content: "";
  transform: rotate(-6deg);
}

.team-placeholder span {
  position: relative;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 10, 15, 0.72);
  border-radius: 8px;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.team-card div {
  padding: 24px;
}

.cta {
  justify-content: space-between;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 52, 79, 0.22), rgba(53, 214, 255, 0.14)),
    #101722;
}

.cta h2 {
  max-width: 840px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(2, minmax(180px, 0.7fr));
  align-items: start;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #06080d;
}

.site-footer p {
  margin: 0 0 8px;
}

.footer-logo {
  width: min(280px, 70vw);
  height: auto;
}

.footer-brand p {
  color: var(--muted);
}

.footer-info h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-info a {
  color: var(--cyan);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .intro,
  .service-grid,
  .package-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 8px 18px;
  }

  .brand-logo {
    width: 146px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 57px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(8, 10, 15, 0.96);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px;
  }

  .hero {
    min-height: 100svh;
    padding: 96px 18px 22px;
  }

  .hero-content {
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }

  .hero-panel,
  .intro,
  .service-grid,
  .package-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .package-card,
  .service-grid article {
    min-height: 0;
  }

  .cta {
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
