:root {
  --bg-900: #02070d;
  --bg-800: #071419;
  --bg-700: #0a1d2a;
  --panel: rgba(16, 29, 39, 0.7);
  --primary: #1bc0ff;
  --primary-strong: #00a7ff;
  --primary-soft: #6de6ff;
  --accent: #7eddfb;
  --text: #eefbff;
  --muted: #bfdeed;
  --white: #ffffff;
  --shadow: rgba(31, 194, 255, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background:
    radial-gradient(circle at top, rgba(20, 154, 212, 0.18), transparent 38%),
    linear-gradient(135deg, #02070d 0%, #050d14 38%, #02070d 100%);
  color: var(--text);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(1, 10, 18, 0.45);
  border-bottom: 1px solid rgba(102, 212, 255, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(124, 227, 255, 0.5);
  box-shadow: 0 0 18px rgba(31, 194, 255, 0.32);
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }
}

.brand-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 46, 58, 0.8);
  border: 1px solid rgba(118, 223, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(31, 194, 255, 0.28);
  border-color: rgba(118, 223, 255, 0.6);
}

.nav-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary-soft));
  color: #031018;
  box-shadow: 0 0 24px rgba(31, 194, 255, 0.38);
}

.btn-secondary {
  border: 1px solid rgba(117, 220, 255, 0.7);
  background: rgba(21, 51, 64, 0.25);
  color: var(--white);
}

.hero {
  padding: 78px 0 48px;
  animation: fadeIn 0.45s ease-out both;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  align-items: center;
  gap: 32px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-soft);
}

.hero-copy h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 4vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.hero-copy h1 span {
  display: block;
  color: var(--primary-soft);
  text-shadow: 0 0 24px rgba(101, 220, 255, 0.25);
}

.hero-text {
  max-width: 620px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 20px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding-left: 0;
  margin-top: 22px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbital-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(720px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(13, 24, 31, 0.3);
  border: 6px solid rgba(22, 189, 255, 0.9);
  box-shadow:
    0 0 0 8px rgba(81, 206, 255, 0.15),
    0 0 30px rgba(0, 170, 255, 0.6),
    inset 0 0 28px rgba(1, 36, 48, 0.8);
  overflow: hidden;
}

.orbital-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(126, 221, 251, 0.3);
}

.orbital-frame img {
  width: min(86%, 620px);
  filter: drop-shadow(0 0 18px rgba(74, 229, 255, 0.2));
}

.highlights-band {
  padding: 0 0 34px;
  animation: fadeIn 0.5s ease-out 0.05s both;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 28px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 27, 35, 0.9), rgba(7, 19, 26, 0.96));
  border: 1px solid rgba(126, 223, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(126, 223, 255, 0.06), 0 14px 24px rgba(5, 16, 23, 0.25);
  text-align: center;
}

.highlight-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.4rem, 3vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--primary-soft);
  text-shadow: 0 0 18px rgba(96, 216, 255, 0.2);
  margin-bottom: 14px;
}

.highlight-card p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 600;
}

.company-section {
  padding: 18px 0 52px;
  animation: fadeIn 0.5s ease-out 0.08s both;
}

.company-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.company-copy h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.company-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.08rem;
}

.company-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 27, 35, 0.92), rgba(7, 19, 26, 0.98));
  border: 1px solid rgba(126, 223, 255, 0.4);
  box-shadow: inset 0 0 0 1px rgba(126, 223, 255, 0.06), 0 16px 28px rgba(5, 16, 23, 0.24);
}

.company-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(17, 40, 51, 0.72);
  border: 1px solid rgba(118, 223, 255, 0.18);
  text-align: center;
}

.company-stat strong {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  color: var(--primary-soft);
}

.company-stat span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
}

.about-section,
.services,
.features {
  padding: 52px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.about-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.08rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-height: 160px;
  padding: 24px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 29, 38, 0.9), rgba(10, 21, 28, 0.95));
  border: 1px solid rgba(118, 223, 255, 0.18);
  text-align: center;
}

.stat-card strong {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  color: var(--primary-soft);
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading h2,
.feature-content h2,
.cta h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 22px;
}

.service-card {
  background: linear-gradient(180deg, rgba(13, 29, 38, 0.85), rgba(12, 19, 27, 0.95));
  border: 1px solid rgba(114, 214, 255, 0.2);
  border-radius: 26px;
  padding: 28px 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(118, 223, 255, 0.7);
  box-shadow: 0 18px 28px rgba(31, 194, 255, 0.08);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27, 192, 255, 0.12), rgba(110, 222, 255, 0.28));
  border: 1px solid rgba(122, 232, 255, 0.5);
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.service-card p,
.feature-content p,
.feature-item p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.05rem;
}

.features-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.feature-content {
  padding-right: 18px;
}

.feature-content h2 {
  margin-bottom: 16px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: start;
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(10, 27, 35, 0.75);
  border: 1px solid rgba(117, 220, 255, 0.18);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--bg-900);
  background: linear-gradient(135deg, var(--primary-soft), var(--primary));
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
}

.feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.cta {
  padding: 36px 0 80px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 34px 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(26, 185, 255, 0.12), rgba(39, 84, 108, 0.28));
  border: 1px solid rgba(118, 223, 255, 0.45);
  box-shadow: inset 0 0 20px rgba(78, 167, 209, 0.12);
}

.contact-section {
  padding: 30px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.contact-info,
.contact-panel {
  background: rgba(10, 24, 31, 0.8);
  border: 1px solid rgba(118, 223, 255, 0.2);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.contact-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.07rem;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 20px;
}

.contact-badges span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(19, 56, 69, 0.9);
  border: 1px solid rgba(118, 223, 255, 0.25);
  color: var(--primary-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(18, 35, 43, 0.75);
  border: 1px solid rgba(117, 220, 255, 0.12);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(27, 192, 255, 0.16), rgba(110, 222, 255, 0.32));
  border: 1px solid rgba(118, 223, 255, 0.45);
  font-size: 1.4rem;
  color: var(--white);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.contact-item h3 {
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  color: var(--muted);
  text-decoration: none;
}

.contact-panel-header {
  margin-bottom: 22px;
}

.panel-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(21, 79, 90, 0.75);
  border: 1px solid rgba(118, 223, 255, 0.38);
  color: var(--primary-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel-header h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(118, 223, 255, 0.2);
  border-radius: 16px;
  background: rgba(5, 16, 22, 0.9);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(118, 223, 255, 0.9) 50%),
    linear-gradient(135deg, rgba(118, 223, 255, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 4px),
    calc(100% - 14px) calc(50% - 4px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.contact-form select option {
  background: #071a24;
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(118, 223, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(103, 218, 255, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-full {
  width: 100%;
  border: none;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  color: var(--primary-soft);
  font-weight: 600;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 7, 13, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  width: min(100%, 440px);
  padding: 34px 28px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(10, 24, 31, 0.98), rgba(15, 34, 42, 0.98));
  border: 1px solid rgba(118, 223, 255, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(30, 77, 94, 0.7);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-strong));
  color: #02141c;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(31, 194, 255, 0.4);
}

.modal-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.modal-box p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.modal-button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.site-footer {
  padding: 18px 0 40px;
}

.footer-content {
  border-top: 1px solid rgba(118, 223, 255, 0.15);
  padding-top: 22px;
  text-align: center;
}

@media (max-width: 980px) {
  .hero-grid,
  .features-layout,
  .service-grid,
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text,
  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-socials {
    gap: 8px;
  }

  .nav-social-link {
    width: 34px;
    height: 34px;
  }

  .btn {
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.82rem;
  }

  .service-grid,
  .features-layout,
  .hero-grid,
  .about-grid,
  .contact-grid,
  .about-stats,
  .highlight-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-text,
  .hero-actions,
  .hero-points,
  .cta-box,
  .section-heading {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-text {
    max-width: none;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .orbital-frame {
    width: min(100%, 480px);
  }

  .highlight-card,
  .service-card,
  .feature-item,
  .contact-info,
  .contact-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-box {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 18px;
  }

  .cta-box .btn {
    width: 100%;
  }

  .contact-info,
  .contact-panel {
    padding: 22px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-item {
    padding: 16px 14px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, 1200px);
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .eyebrow {
    letter-spacing: 0.12em;
  }

  .highlight-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}
