*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #020b1a;
  --bg-alt: #041427;
  --primary: #1bb4e8;
  --primary-soft: rgba(27, 180, 232, 0.2);
  --accent: #49ffe3;
  --text-main: #f5f7ff;
  --text-muted: #a6b1cc;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(3, 17, 37, 0.9);
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.65);
  --nav-height: 76px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #102a5c 0, #020612 45%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(2, 10, 26, 0.96), rgba(2, 8, 24, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(3, 9, 26, 0.98);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  padding: 3px;
  background: radial-gradient(circle at 10% 0, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(12, 178, 217, 0.75);
}

.logo-mark {
  width: 100%;
  height: 100%;
}

.logo-w {
  position: absolute;
  right: -10px;
  bottom: -6px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #020b1a;
  border: 2px solid rgba(73, 255, 227, 0.9);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  text-transform: lowercase;
}

.logo-mark.small {
  width: 32px;
  height: 32px;
}

.logo-w.small {
  width: 18px;
  height: 18px;
  font-size: 11px;
  right: -8px;
  bottom: -5px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding-block: 3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn {
  font-family: inherit;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #020612;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(5, 187, 230, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 55px rgba(5, 187, 230, 0.9);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(11, 32, 68, 0.9);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(6, 28, 60, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(circle at top left, rgba(73, 255, 227, 0.16), transparent 55%),
    radial-gradient(circle at top right, rgba(27, 180, 232, 0.25), transparent 60%),
    linear-gradient(180deg, #020612, #020513 38%, #01020a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-grid.svg");
  opacity: 0.25;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 0.95rem;
}

.hero h1 {
  font-size: clamp(2.35rem, 3.2vw + 1.5rem, 3.3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--text-muted);
}

.meta-value {
  display: block;
  color: var(--text-main);
  margin-top: 0.25rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.glass-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, rgba(7, 33, 70, 0.95), rgba(1, 10, 27, 0.98));
  border: 1px solid rgba(86, 173, 255, 0.55);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(73, 255, 227, 0.08), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.glass-card h2,
.glass-card h3 {
  margin-bottom: 0.75rem;
}

.key-services {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
  position: relative;
  z-index: 1;
}

.key-services li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.05rem;
  position: relative;
}

.key-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent), var(--primary));
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(4, 21, 46, 0.9);
  border: 1px solid rgba(73, 255, 227, 0.35);
  box-shadow: 0 10px 28px rgba(5, 187, 230, 0.45);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot-green {
  background: #3af397;
}

.dot-blue {
  background: #1bb4e8;
}

.section-header {
  text-align: center;
  padding-top: 3.5rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 auto 2.4rem;
}

.services {
  padding-bottom: 4rem;
  background: radial-gradient(circle at top, rgba(26, 113, 221, 0.22), transparent 58%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  padding-top: 1.5rem;
}

.service-card {
  background: linear-gradient(145deg, rgba(3, 20, 49, 0.95), rgba(6, 28, 68, 0.98));
  border-radius: var(--radius-md);
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(88, 148, 255, 0.35);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.85);
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(73, 255, 227, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 22px 70px rgba(6, 171, 219, 0.75);
}

.service-card:hover::after {
  opacity: 1;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  box-shadow: 0 12px 30px rgba(5, 187, 230, 0.7);
}

.icon-circle img {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.solutions {
  padding: 4.2rem 0;
  background: radial-gradient(circle at center, rgba(27, 180, 232, 0.14), transparent 55%);
}

.solutions-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.solutions-copy h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.solutions-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
}

.checklist li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.7rem;
  color: var(--accent);
}

.kpi-card {
  max-width: 360px;
}

.kpi-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.kpi {
  flex: 1;
}

.kpi-number {
  font-size: 1.7rem;
  font-weight: 600;
}

.kpi-unit {
  font-size: 0.9rem;
  margin-left: 2px;
}

.kpi-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.kpi-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about {
  padding: 4rem 0 3.5rem;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.about-copy h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.mini-card {
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  background: linear-gradient(145deg, rgba(6, 29, 71, 0.95), rgba(1, 8, 21, 0.98));
  border: 1px solid rgba(86, 173, 255, 0.55);
  box-shadow: var(--shadow-soft);
}

.contact {
  padding: 3.5rem 0 4rem;
  background: radial-gradient(circle at bottom, rgba(0, 212, 255, 0.28), transparent 60%);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: flex-start;
}

.contact-copy p {
  color: var(--text-muted);
}

.contact-details {
  margin-top: 1rem;
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form-card {
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem 1.8rem;
  background: rgba(5, 20, 47, 0.98);
  border: 1px solid rgba(73, 255, 227, 0.4);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.form-row {
  display: flex;
  gap: 0.9rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.form-field label {
  color: var(--text-muted);
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(132, 178, 255, 0.3);
  background: rgba(2, 11, 28, 0.95);
  color: var(--text-main);
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(166, 177, 204, 0.6);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(73, 255, 227, 0.7);
  background: #020b1a;
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  min-height: 1.1em;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 0 1.6rem;
  background: #01040c;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

/* Policy / page layout */

.page-main {
  min-height: calc(100vh - 140px);
}

.page-hero {
  padding: 4.2rem 0 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(73, 255, 227, 0.12), transparent 55%),
    linear-gradient(180deg, #020612, #020513 70%, #01020a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.page-intro {
  max-width: 40rem;
  color: var(--text-muted);
}

.page-content {
  padding: 2.4rem 0 3.2rem;
}

.page-content h2 {
  font-size: 1.25rem;
  margin: 1.6rem 0 0.45rem;
}

.page-content p {
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.page-content ul {
  margin: 0.25rem 0 0.95rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.page-content li {
  margin-bottom: 0.3rem;
}

.last-updated {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQs */

.faq-wrapper {
  display: grid;
  gap: 1.4rem;
}

.faq-intro p {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.faq-item h2 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 420px;
    margin-inline: auto;
  }

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

  .solutions-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .kpi-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 2rem);
  }

  .hero {
    padding-top: 4.2rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
