:root {
  --primary-color: #0f2742;
  --secondary-color: #2f80ed;
  --accent-color: #d9a441;
  --light-bg: #f7f9fc;
  --text-color: #1f2933;
  --muted-text: #52606d;
  --border-soft: rgba(15, 39, 66, 0.1);
  --shadow-soft: 0 22px 60px rgba(15, 39, 66, 0.08);
  --shadow-hover: 0 26px 70px rgba(15, 39, 66, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --nav-height: 88px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-color);
  background:
    radial-gradient(circle at top left, rgba(47, 128, 237, 0.08), transparent 24%),
    linear-gradient(180deg, #fdfefe 0%, #f5f8fc 100%);
  line-height: 1.7;
}

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

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

.section-shell {
  padding: 6rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 252, 0.96));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2,
.hero-copy h1 {
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0;
}

.section-intro,
.hero-support,
.hero-lead,
.service-card p,
.feature-card p,
.content-card p,
.contact-card,
.footer-copy {
  color: var(--muted-text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(47, 128, 237, 0.5);
}

.navbar {
  padding: 1rem 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.navbar.nav-scrolled {
  background: rgba(247, 249, 252, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(15, 39, 66, 0.08);
}

.navbar-toggler {
  border: 0;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(47, 128, 237, 0.18);
}

.brand-mark {
  min-height: 58px;
}

.brand-logo-shell {
  width: 58px;
  height: 58px;
  padding: 0.35rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #07111f 0%, #0f2742 100%);
  box-shadow: 0 12px 24px rgba(15, 39, 66, 0.22);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand-subtext {
  color: var(--muted-text);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-link {
  color: var(--text-color);
  font-weight: 700;
  padding: 0.75rem 0.95rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--secondary-color);
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.btn-brand-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: 0;
  color: #fff;
  box-shadow: 0 18px 35px rgba(47, 128, 237, 0.22);
}

.btn-brand-primary:hover,
.btn-brand-primary:focus {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(47, 128, 237, 0.28);
}

.btn-brand-outline {
  border: 1px solid rgba(15, 39, 66, 0.14);
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.84);
}

.btn-brand-outline:hover,
.btn-brand-outline:focus {
  color: var(--secondary-color);
  border-color: rgba(47, 128, 237, 0.35);
  background: #fff;
}

.hero-section {
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 4.5rem;
  overflow: hidden;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.22rem;
  font-weight: 600;
  max-width: 44rem;
  margin-bottom: 1rem;
}

.hero-support {
  font-size: 1.02rem;
  margin-bottom: 2rem;
  max-width: 42rem;
}

.hero-panel {
  position: relative;
  isolation: isolate;
}

.hero-panel-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
  border: 1px solid rgba(15, 39, 66, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-logo-frame {
  border-radius: calc(var(--radius-xl) - 10px);
  background: radial-gradient(circle at top, rgba(217, 164, 65, 0.26), transparent 36%), #09111d;
  padding: 1.5rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: min(340px, 100%);
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.32));
}

.hero-panel-label {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.65rem;
}

.hero-panel-copy h2 {
  color: var(--primary-color);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.metric-tile {
  height: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(15, 39, 66, 0.08);
}

.metric-title {
  display: block;
  color: var(--muted-text);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.45rem;
}

.metric-tile strong {
  color: var(--primary-color);
  font-size: 1rem;
  line-height: 1.4;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  z-index: 1;
  filter: blur(6px);
}

.hero-shape-one {
  width: 170px;
  height: 170px;
  top: -30px;
  right: -20px;
  background: rgba(47, 128, 237, 0.18);
}

.hero-shape-two {
  width: 130px;
  height: 130px;
  bottom: -30px;
  left: -15px;
  background: rgba(217, 164, 65, 0.18);
}

.credibility-strip {
  padding: 1.25rem 0;
  background: #ffffff;
  border-top: 1px solid rgba(15, 39, 66, 0.06);
  border-bottom: 1px solid rgba(15, 39, 66, 0.06);
}

.credibility-pill,
.tag-chip,
.sector-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.credibility-pill {
  padding: 0.75rem 1rem;
  color: var(--primary-color);
  background: rgba(15, 39, 66, 0.04);
  border: 1px solid rgba(15, 39, 66, 0.08);
}

.content-card,
.service-card,
.feature-card,
.contact-card,
.form-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 39, 66, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.content-card,
.contact-card,
.form-card {
  padding: 2rem;
}

.founder-card {
  background:
    linear-gradient(180deg, rgba(15, 39, 66, 0.04), rgba(47, 128, 237, 0.02)),
    #fff;
}

.tag-chip {
  padding: 0.55rem 0.95rem;
  background: rgba(47, 128, 237, 0.08);
  color: var(--primary-color);
  border: 1px solid rgba(47, 128, 237, 0.12);
  font-size: 0.92rem;
}

.service-card,
.feature-card {
  padding: 2rem;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.service-card h3,
.feature-card h3,
.contact-card h3 {
  color: var(--primary-color);
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.services-cta {
  margin-top: 2.25rem;
}

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

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sector-chip {
  min-height: 118px;
  padding: 1.5rem;
  text-align: center;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.96));
  border: 1px solid rgba(15, 39, 66, 0.08);
  color: var(--primary-color);
  box-shadow: 0 16px 32px rgba(15, 39, 66, 0.07);
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15, 39, 66, 0.08);
}

.contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list span {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-text);
  font-weight: 800;
}

.contact-list a {
  color: var(--primary-color);
  font-weight: 700;
  word-break: break-word;
}

.contact-list a:hover,
.footer-links a:hover {
  color: var(--secondary-color);
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid rgba(15, 39, 66, 0.14);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.96);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(47, 128, 237, 0.42);
  box-shadow: 0 0 0 0.22rem rgba(47, 128, 237, 0.14);
}

.form-label {
  font-weight: 700;
  color: var(--primary-color);
}

.form-status {
  min-height: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.site-footer {
  padding: 2.4rem 0;
  background: #09111d;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  :root {
    --nav-height: 78px;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(247, 249, 252, 0.98);
    border: 1px solid rgba(15, 39, 66, 0.08);
    box-shadow: 0 18px 40px rgba(15, 39, 66, 0.08);
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 2.5rem);
  }

  .hero-logo-frame {
    min-height: 260px;
  }
}

@media (max-width: 767.98px) {
  .section-shell {
    padding: 4.5rem 0;
  }

  .brand-subtext {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3.3rem);
  }

  .content-card,
  .contact-card,
  .form-card,
  .service-card,
  .feature-card {
    padding: 1.5rem;
  }

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

  .sector-chip {
    min-height: 92px;
  }
}
