:root {
  --bg: #07101f;
  --bg-2: #0b1730;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f5fbff;
  --muted: rgba(245, 251, 255, 0.72);
  --muted-2: rgba(245, 251, 255, 0.56);
  --cyan: #2cc8de;
  --cyan-2: #1ededa;
  --blue: #4b98e5;
  --blue-2: #5982e8;
  --deep: #081326;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(75, 152, 229, 0.32), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(30, 222, 218, 0.20), transparent 30rem),
    linear-gradient(180deg, #07101f 0%, #0b1730 45%, #07101f 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -2;
}

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

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

a:hover {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 96px 0;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  left: 20px;
  top: 20px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--deep);
  border-radius: 12px;
  z-index: 1000;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #03101d;
  background: linear-gradient(135deg, var(--cyan-2), var(--blue));
  box-shadow: 0 16px 38px rgba(44, 200, 222, 0.26);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border-color: var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 16, 31, 0.76);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  color: rgba(245,251,255,0.84);
  background: transparent;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.nav-link:hover,
.dropdown-parent.open .nav-link {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.nav-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.dropdown-parent {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: min(680px, calc(100vw - 40px));
  padding: 16px;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 19, 38, 0.96);
  box-shadow: var(--shadow);
}

.dropdown-parent.open .mega-menu {
  display: grid;
}

.mega-menu a {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
}

.mega-menu a:hover {
  background: rgba(44,200,222,0.12);
}

.mega-menu b,
.mega-menu span {
  display: block;
}

.mega-menu span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  padding: 11px;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 52px;
  align-items: center;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.58;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  background: rgba(44, 200, 222, 0.16);
  left: -120px;
  top: 16%;
}

.hero-glow-two {
  width: 520px;
  height: 520px;
  background: rgba(89, 130, 232, 0.14);
  right: -160px;
  bottom: 4%;
}

.eyebrow,
.section-kicker,
.panel-label,
.package-label {
  margin: 0 0 14px;
  color: var(--cyan-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.hero-text {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span,
.authority-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  color: rgba(245,251,255,0.78);
  background: rgba(255,255,255,0.055);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.dashboard-card {
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.055));
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.primary-card {
  padding: 24px;
  transform: rotate(1deg);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.card-topline small {
  color: #061122;
  background: linear-gradient(135deg, var(--cyan-2), var(--blue));
  border-radius: 999px;
  padding: 4px 10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.metric-grid article {
  padding: 18px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(0,0,0,0.16);
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.metric-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.progress-stack {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.progress-stack div {
  display: grid;
  gap: 9px;
}

.progress-stack span {
  color: rgba(245,251,255,0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.progress-stack i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  overflow: hidden;
}

.progress-stack i::before {
  content: "";
  display: block;
  width: var(--width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan-2), var(--blue-2));
}

.floating-card {
  position: absolute;
  width: 230px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  background: rgba(8, 19, 38, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-card b,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.floating-card-left {
  left: -18px;
  bottom: 54px;
}

.floating-card-right {
  right: -14px;
  top: 62px;
}

.authority-strip {
  border-block: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.045);
}

.authority-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.authority-inner p {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.authority-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.section-heading p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px;
}

.service-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.055);
  cursor: pointer;
  font-weight: 900;
}

.service-tab.active {
  color: #03101d;
  background: linear-gradient(135deg, var(--cyan-2), var(--blue));
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(44,200,222,0.12), rgba(89,130,232,0.08));
  margin-bottom: 22px;
}

.service-panel h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.service-panel p:not(.panel-label) {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-panel ul,
.price-card ul {
  padding-left: 1.1rem;
  margin: 18px 0 22px;
  color: rgba(245,251,255,0.82);
}

.service-panel li,
.price-card li {
  margin: 9px 0;
}

.panel-card {
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(0,0,0,0.19);
  border: 1px solid rgba(255,255,255,0.10);
}

.panel-card span {
  color: var(--cyan-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.panel-card strong {
  font-size: 1.32rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.services-grid,
.pricing-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.price-card,
.process-grid article,
.proof-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.price-card:hover,
.process-grid article:hover,
.proof-cards article:hover {
  transform: translateY(-5px);
  border-color: rgba(44,200,222,0.40);
  background: var(--surface-strong);
}

.icon-badge,
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #03101d;
  background: linear-gradient(135deg, var(--cyan-2), var(--blue));
  font-weight: 950;
}

.service-card h3,
.process-grid h3,
.price-card h3 {
  margin: 18px 0 10px;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.service-card p,
.process-grid p,
.price-card p,
.proof-cards span {
  margin: 0;
  color: var(--muted);
}

.dark-section,
.proof-section,
.contact-section {
  background: linear-gradient(180deg, rgba(0,0,0,0.16), rgba(255,255,255,0.035));
  border-block: 1px solid rgba(255,255,255,0.08);
}

.industry-search {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-bottom: 20px;
}

.industry-search label,
.contact-form span {
  font-weight: 900;
  color: rgba(245,251,255,0.84);
}

.industry-search input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255,255,255,0.075);
  padding: 14px 15px;
  outline: none;
}

.industry-search input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(44,200,222,0.62);
  box-shadow: 0 0 0 5px rgba(44,200,222,0.10);
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-grid button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.075);
  cursor: pointer;
  font-weight: 900;
}

.industry-grid button:hover {
  border-color: rgba(44,200,222,0.44);
  background: rgba(44,200,222,0.12);
}

.industry-grid button.hide {
  display: none;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: start;
}

.proof-cards {
  display: grid;
  gap: 16px;
}

.proof-cards strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(44,200,222,0.5);
  background: linear-gradient(145deg, rgba(44,200,222,0.16), rgba(89,130,232,0.10));
  box-shadow: 0 24px 80px rgba(44,200,222,0.12);
}

.price {
  margin: 0 0 10px !important;
}

.price strong {
  color: var(--text);
  font-size: 1.95rem;
  letter-spacing: -0.06em;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}

.about-media {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: radial-gradient(circle, rgba(44,200,222,0.18), rgba(255,255,255,0.05));
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  max-width: 360px;
  margin: auto;
  filter: drop-shadow(0 28px 55px rgba(44,200,222,0.18));
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-options a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
  color: var(--text);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.075);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form select option {
  color: #07101f;
}

.form-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  padding: 54px 0 26px;
  background: #050b15;
  border-top: 1px solid rgba(255,255,255,0.09);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer-grid p {
  max-width: 430px;
  color: var(--muted);
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.footer-grid a:not(.footer-brand) {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: var(--muted);
  font-weight: 750;
}

.footer-grid a:not(.footer-brand):hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.09);
  color: var(--muted-2);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

@media (max-width: 980px) {
  .section-pad {
    padding: 78px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8,19,38,0.98);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
  }

  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 8px;
  }

  .hero-grid,
  .service-panel,
  .proof-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .authority-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 0;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.35rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .metric-grid,
  .services-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-panel,
  .contact-form {
    padding: 20px;
  }

  .section-heading h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

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