:root {
  --brand-primary: #00777f;
  --brand-dark: #0b1d3a;
  --brand-light: #eef3fb;
  --accent: #00b3be;
  --ink: #12223d;
  --muted: #5b6d86;
  --bs-primary: #00777f;
  --bs-secondary: #5b6d86;
}

body {
  font-family: 'Open Sans', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #f5f9ff, #ffffff 65%);
  line-height: 1.65;
  overflow-y: scroll;
}

html {
  scrollbar-gutter: stable;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Alegreya Sans', 'Open Sans', system-ui, sans-serif;
  font-weight: 500;
  color: var(--brand-dark);
}

.navbar {
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1050;
}

.navbar .navbar-collapse {
  align-items: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Roboto', 'Alegreya Sans', system-ui, sans-serif;
  text-decoration: none;
}

.logo-img {
  width: 300px;
  height: auto;
  border-radius: 0;
  background: transparent;
  filter: none;
  opacity: 0.95;
}

.logo-glyph {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(140deg, #0f4fbf, #2aa7ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo-text span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.navbar .nav-link {
  font-family: 'Roboto', 'Open Sans', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #1c1c1c;
  position: relative;
  padding: 0.35rem 0;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--brand-primary);
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.logo-text small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 34, 61, 0.6);
}

.footer-brand .logo-text span {
  color: #fff;
}

.footer-brand .logo-text small {
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand .logo-img {
  opacity: 0.85;
}

.hero {
  background: linear-gradient(135deg, rgba(15, 79, 191, 0.95), rgba(9, 32, 76, 0.95));
  color: #f8fbff;
  border-radius: 32px;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: #0b1d3a;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(42, 167, 255, 0.35), transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.18), transparent 50%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.section-label-index{
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}


.hero .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
}

.hero .small {
  color: rgba(255, 255, 255, 0.8);
}

.card-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 167, 255, 0.15);
  color: var(--brand-primary);
  font-size: 1.5rem;
}

.case-carousel .carousel-item {
  padding: 2rem 3rem;
  border-radius: 24px;
  background: #0c1c38;
  color: #fff;
}

.logo-pill {
  border: 1px solid rgba(15, 45, 90, 0.12);
  border-radius: 999px;
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 600;
  color: var(--brand-dark);
  background: #fff;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(15, 45, 90, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
}

footer {
  background: #f4f8ff;
  color: rgba(11, 29, 58, 0.75);
}

footer a {
  color: var(--brand-dark);
}

.btn-brand {
  background: linear-gradient(120deg, #0f4fbf, #2aa7ff);
  color: #fff;
  border: none;
  box-shadow: 0 15px 35px rgba(15, 79, 191, 0.25);
}

.btn-brand:hover {
  color: #fff;
  opacity: 0.95;
}

.process-step {
  border-left: 3px solid var(--brand-primary);
  padding-left: 1.5rem;
}

.resource-card {
  border: 1px solid rgba(15, 45, 90, 0.08);
  border-radius: 18px;
  height: 100%;
  padding: 1.5rem;
}

.form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.25rem rgba(42, 167, 255, 0.2);
}

.schedule-block {
  border-radius: 24px;
  background: #fff;
  padding: 2rem;
}

.niche-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(15, 45, 90, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: var(--brand-dark);
  background: rgba(42, 167, 255, 0.08);
}

.hero .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.hero .btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-link,
.navbar .btn {
  color: #1c1c1c;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-primary);
}

.navbar .dropdown-menu {
  border: 1px solid rgba(15, 45, 90, 0.1);
  box-shadow: 0 18px 40px rgba(15, 45, 90, 0.12);
  margin-top: 0.5rem;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 450px;
  padding: 0.75rem 0.25rem;
  z-index: 1100;
}

.navbar .dropdown-menu.show {
  display: block;
}

.navbar .dropdown-menu .dropdown-item {
  font-weight: 500;
  padding: 0.65rem 1rem;
  white-space: normal;
}

@media (min-width: 992px) {
  .navbar .dropdown {
    position: relative;
  }
  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}

@media (min-width: 992px) {
  .navbar .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }
  .navbar .dropdown:hover > .dropdown-toggle::after,
  .navbar .dropdown:focus-within > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

.navbar-toggler {
  border-color: rgba(11, 29, 58, 0.2);
}

.navbar-toggler-icon {
  filter: none;
}

main {
  position: relative;
  height: auto;
  overflow: visible;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 45, 90, 0.08);
}

main section {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}


.content-width {
  max-width: 64ch;
}


main::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(15, 79, 191, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

.card,
.process-step,
.resource-card,
.schedule-block {
  background: #fff;
  color: var(--ink);
}

.panel-dark {
  background: #0b1d3a;
  color: #ffffff;
}

.btn-outline-primary {
  border-color: rgba(15, 79, 191, 0.4);
  color: var(--brand-primary);
}

.btn-outline-primary:hover {
  border-color: var(--brand-primary);
  background: rgba(15, 79, 191, 0.08);
  color: var(--brand-primary);
}

.text-secondary {
  color: var(--muted) !important;
}

.text-muted {
  color: var(--muted) !important;
}

.text-info {
  color: #4ba3ff !important;
}

a {
  color: var(--brand-dark);
}

a:hover {
  color: var(--brand-primary);
}
.nav-shell {
  background: #ffffff;
}
