:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e9eff5;
  background: #020814;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(17, 127, 255, 0.18), transparent 28%),
              radial-gradient(circle at 85% 10%, rgba(255, 77, 165, 0.22), transparent 20%),
              linear-gradient(180deg, #060b18 0%, #070d1c 35%, #05101d 100%);
}

button, input, textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: rgba(3, 8, 23, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 165px;
  height: 90px;
}

.brand-name {
  display: block;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-tag {
  display: block;
  font-size: 0.95rem;
  color: #91a7ff;
}

.site-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.site-nav a {
  color: #d8e0ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: #6bb7ff;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: #c8d4ff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: 3.5rem 2rem 4.5rem;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(98, 120, 255, 0.16);
  color: #b8d1ff;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 4.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 1.25rem;
}

.hero-text {
  max-width: 580px;
  color: #c7d4ff;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #3d6dff, #0fb1ff);
  color: #fff;
}

.btn-secondary {
  background: rgba(19, 28, 60, 0.85);
  color: #d8e0ff;
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(9, 15, 34, 0.95);
  border: 1px solid rgba(110, 170, 255, 0.16);
  border-radius: 35px;
  padding: 2rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 34px 120px rgba(1, 15, 33, 0.35);
}

.hero-card h2 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.1;
}

.hero-card p {
  margin: 0;
  color: #acc2ff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats div {
  padding: 1rem 1.15rem;
  background: rgba(14, 20, 40, 0.95);
  border-radius: 24px;
  border: 1px solid rgba(119, 158, 255, 0.12);
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
  color: #fff;
}

.hero-stats span {
  color: #9db7ff;
  font-size: 0.95rem;
}

.section {
  padding: 3.5rem 2rem;
}

.section-header,
.section-quote {
  max-width: 880px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: #9cb8ff;
  letter-spacing: 0.14em;
  font-size: 0.88rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2,
.section-quote h2,
.section h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.05;
}

.section p {
  color: #c8d3ff;
  font-size: 1rem;
  max-width: 64rem;
  margin-top: 1rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1180px;
  margin: 0 auto;
}

.section-text {
  display: grid;
  gap: 1.5rem;
}

.values-grid {
  display: grid;
  gap: 1rem;
}

.values-grid article {
  border-left: 3px solid #3d6dff;
  padding-left: 1rem;
}

.values-grid h3,
.feature-card h3,
.industry-card h3 {
  margin: 0 0 0.6rem;
  color: #fff;
}

.section-cards,
.services-grid,
.industry-grid,
.contact-cards {
  display: grid;
  gap: 1rem;
}

.feature-card,
.service-card,
.industry-card,
.contact-cards article,
.contact-form {
  background: rgba(7, 13, 29, 0.92);
  border: 1px solid rgba(85, 136, 255, 0.12);
  border-radius: 28px;
  padding: 1.65rem;
}

.feature-card p,
.service-card p,
.industry-card p,
.contact-cards a {
  color: #b9c8ff;
}

.feature-card {
  box-shadow: 0 18px 58px rgba(9, 16, 34, 0.28);
}

.service-card {
  min-height: 182px;
  box-shadow: 0 20px 60px rgba(6, 9, 25, 0.2);
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-card {
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(120, 170, 255, 0.18), transparent 35%);
  pointer-events: none;
}

.industry-card h3,
.contact-cards h3 {
  position: relative;
  z-index: 1;
}

.section-highlight {
  background: rgba(12, 20, 42, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-quote {
  display: grid;
  gap: 2rem;
  max-width: 1040px;
  margin-bottom: 0;
  text-align: left;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-panel div {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(10, 17, 32, 0.95);
  border: 1px solid rgba(94, 143, 255, 0.12);
}

.stats-panel strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: flex-start;
}

.contact-cards {
  grid-template-columns: 1fr 1fr;
  margin-top: 1.5rem;
}

.contact-cards article {
  display: grid;
  gap: 0.8rem;
}

.contact-cards a {
  display: inline-block;
  color: #8ab8ff;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #d4ddff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(129, 156, 255, 0.16);
  background: rgba(7, 12, 25, 0.9);
  color: #eef2ff;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4e86ff;
  box-shadow: 0 0 0 4px rgba(37, 84, 255, 0.14);
}

.site-footer {
  padding: 2rem;
  text-align: center;
  color: #8697c6;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .industry-grid,
  .stats-panel,
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .hero {
    padding-top: 2rem;
  }
  .hero-card {
    min-height: auto;
  }
}
