:root {
  --navy-950: #031020;
  --navy-900: #06192f;
  --navy-800: #0b2d55;
  --blue-600: #087ad8;
  --blue-400: #26b3e8;
  --cyan-200: #b7eefb;
  --orange-500: #f59a23;
  --white: #ffffff;
  --mist: #eaf7ff;
  --muted: #b8c9d9;
  --line: rgba(255, 255, 255, 0.2);
  --glass: rgba(8, 42, 78, 0.52);
  --glass-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 60px rgba(0, 12, 32, 0.32);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mist);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, rgba(3, 16, 32, 0.96), rgba(5, 55, 99, 0.93)),
    #06192f;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 16, 32, 0.72);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
  min-width: max-content;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--white);
  padding: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: #d7ebfa;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 4px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 32px;
  min-height: 78vh;
  padding: 72px 5vw 56px;
  overflow: hidden;
}

.dashboard-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 16, 32, 0.82), rgba(5, 44, 85, 0.62)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.hero-overlay,
.page-hero::before,
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 16, 32, 0.16), rgba(3, 16, 32, 0.9)),
    linear-gradient(90deg, rgba(38, 179, 232, 0.16), rgba(245, 154, 35, 0.1));
}

.hero-content,
.hero-panel,
.page-hero-content,
.legal-heading {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--cyan-200);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.hero-content h1,
.page-hero-content h1,
.legal-heading h1 {
  color: var(--white);
  font-size: 4rem;
  max-width: 900px;
}

.hero-copy,
.page-hero-content p,
.legal-heading p,
.section-heading p,
.content-card p,
.value-card p,
.timeline p,
.legal-card p,
.info-card p,
.contact-form-card p {
  color: #cce0f0;
}

.hero-copy {
  max-width: 680px;
  margin-top: 18px;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-200), var(--blue-400));
  box-shadow: 0 12px 28px rgba(38, 179, 232, 0.26);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

.glass-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-panel {
  padding: 26px;
}

.panel-topline,
.package-meta {
  color: var(--orange-500);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 8px 0 20px;
  color: var(--white);
  font-size: 1.6rem;
}

.mini-form,
.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #eaf7ff;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--white);
  background: rgba(3, 16, 32, 0.5);
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #93acc2;
}

select option {
  color: var(--navy-950);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(38, 179, 232, 0.18);
}

.section {
  padding: 82px 5vw;
}

.dashboard-strip {
  padding-top: 62px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2 {
  color: var(--white);
  font-size: 2.4rem;
}

.section-heading p {
  margin-top: 14px;
  font-size: 1rem;
}

.stats-grid,
.package-grid,
.values-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card span {
  color: #cce0f0;
  font-weight: 700;
}

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

.package-card {
  overflow: hidden;
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.package-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.package-body h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.package-body p {
  color: #cce0f0;
  font-size: 0.95rem;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.package-footer span {
  color: var(--white);
}

.package-footer a {
  color: var(--cyan-200);
}

.section-action {
  margin-top: 22px;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.content-card,
.image-card,
.value-card,
.info-card,
.contact-form-card {
  padding: 28px;
}

.content-card h2,
.contact-form-card h2,
.info-card h2,
.value-card h3,
.timeline h3,
.legal-card h2 {
  color: var(--white);
}

.content-card h2,
.contact-form-card h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.content-card p + p {
  margin-top: 14px;
}

.accent-card {
  border-color: rgba(245, 154, 35, 0.42);
}

.accent-card .btn {
  margin-top: 20px;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.page-hero,
.legal-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  padding: 78px 5vw 64px;
  overflow: hidden;
}

.packages-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 16, 32, 0.8), rgba(9, 77, 127, 0.58)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 16, 32, 0.82), rgba(11, 45, 85, 0.58)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 16, 32, 0.82), rgba(4, 66, 117, 0.56)),
    url("https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  max-width: 860px;
}

.page-hero-content p,
.legal-heading p {
  max-width: 720px;
  margin-top: 16px;
  font-size: 1.08rem;
}

.package-detail-section {
  display: grid;
  gap: 24px;
}

.detail-package {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
}

.detail-package img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.detail-package > div {
  padding: 30px;
}

.detail-package h2 {
  color: var(--white);
  margin: 8px 0 12px;
  font-size: 2rem;
}

.detail-package p {
  color: #cce0f0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #d9ecf7;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--orange-500);
  box-shadow: 0 0 0 5px rgba(245, 154, 35, 0.16);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.price-row span {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
}

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

.value-card h3,
.timeline h3 {
  margin-bottom: 10px;
}

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

.timeline article {
  padding: 24px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: var(--navy-950);
  background: var(--cyan-200);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.info-card h2,
.info-card h3 {
  margin-bottom: 8px;
}

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

.form-status {
  min-height: 24px;
  color: var(--cyan-200);
  font-weight: 800;
}

.legal-hero {
  background:
    linear-gradient(135deg, rgba(3, 16, 32, 0.9), rgba(6, 95, 150, 0.72)),
    #06192f;
}

.legal-heading {
  max-width: 880px;
}

.legal-section {
  max-width: 1100px;
  margin: 0 auto;
}

.legal-card {
  padding: 34px;
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p + p {
  margin-top: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding: 44px 5vw;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(2, 9, 19, 0.62);
}

.site-footer img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  padding: 5px;
  background: var(--white);
  margin-bottom: 14px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
}

.site-footer a,
.site-footer p {
  display: block;
  color: #cce0f0;
  margin-bottom: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan-200);
  outline: none;
}

@media (max-width: 1120px) {
  .package-grid,
  .stats-grid,
  .values-grid,
  .faq-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 0.86rem;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(3, 16, 32, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }

  body.nav-open .site-nav {
    display: flex;
  }

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

  .hero,
  .split-section,
  .contact-layout,
  .detail-package {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-content h1,
  .page-hero-content h1,
  .legal-heading h1 {
    font-size: 3rem;
  }

  .hero-panel {
    max-width: 560px;
  }

  .detail-package img {
    min-height: 280px;
  }

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

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

  .brand span {
    font-size: 0.95rem;
  }

  .hero,
  .section,
  .page-hero,
  .legal-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content h1,
  .page-hero-content h1,
  .legal-heading h1 {
    font-size: 2.35rem;
  }

  .section-heading h2,
  .detail-package h2,
  .content-card h2,
  .contact-form-card h2 {
    font-size: 1.75rem;
  }

  .package-grid,
  .stats-grid,
  .values-grid,
  .faq-grid,
  .timeline,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .price-row,
  .package-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-card,
  .image-card,
  .value-card,
  .info-card,
  .contact-form-card,
  .detail-package > div,
  .legal-card,
  .hero-panel {
    padding: 20px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
