:root {
  --ink: #0f172a;
  --ink-soft: #475569;
  --accent: #1d4ed8;
  --accent-dark: #1e40af;
  --accent-soft: rgba(29, 78, 216, 0.12);
  --accent-warm: #0f766e;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --line: #e2e8f0;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.7;
}

.site {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 28%, #ffffff 100%);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.2px;
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #f8fafc 0%, #ffffff 65%);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.topbar-link {
  font-weight: 600;
  color: var(--accent);
}

.topbar-sep {
  color: #cbd5e1;
}

.site-nav {
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 320px;
}

.brand-mark {
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.nav-links {
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links .nav-link {
  color: var(--ink);
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links .nav-link:hover,
.nav-links .nav-link:focus {
  background: var(--accent-soft);
  color: var(--ink);
}

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

.nav-cta {
  background: var(--accent);
  color: #ffffff !important;
  box-shadow: var(--shadow-soft);
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--accent-dark);
}

.nav-cta::after {
  display: none;
}

.nav-dropdown .dropdown-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.08rem;
}

.nav-dropdown .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: var(--shadow-soft);
  min-width: 16rem;
}

.nav-dropdown .dropdown-item {
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item:focus,
.nav-dropdown .dropdown-item.active {
  background: var(--accent-soft);
  color: var(--ink);
}

.navbar-toggler {
  border-color: var(--line);
}


.site-main {
  padding-bottom: 4rem;
}

.section {
  padding: 4rem 0;
}

.section-compact {
  padding: 1.6rem 0;
}

.section-alt {
  background: var(--surface-muted);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.section-header p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 38rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 55%, #eef2ff 100%);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.7;
  filter: blur(0);
}

.hero-section::before {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.2), transparent 70%);
}

.hero-section::after {
  width: 280px;
  height: 280px;
  bottom: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.18), transparent 70%);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  padding: 3.8rem 0 3rem;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 3.6vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.3rem;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.hero-card h2 {
  margin-top: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.6rem;
  color: var(--ink-soft);
}

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

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: #ffffff;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: #f8fafc;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-label {
  font-weight: 600;
  color: var(--ink);
}

.trust-logos {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.trust-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 15% 0%, rgba(29, 78, 216, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.list-tight {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.info-card {
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 15% 0%, rgba(15, 118, 110, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.service-block {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 15% 0%, rgba(29, 78, 216, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card:hover,
.card:focus-within,
.info-card:hover,
.info-card:focus-within,
.step:hover,
.step:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  border-color: rgba(29, 78, 216, 0.25);
}

.card:hover::after,
.card:focus-within::after,
.info-card:hover::after,
.info-card:focus-within::after,
.step:hover::after,
.step:focus-within::after {
  opacity: 1;
}

.highlight-panel {
  background: linear-gradient(120deg, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #0b1220;
  color: #e2e8f0;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-title {
  margin-top: 0;
  color: #ffffff;
}

.footer-heading {
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: #cbd5e1;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #ffffff;
}

.footer-note {
  color: #cbd5e1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

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

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

.hero-card {
  animation: floatCard 10s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-card {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card,
  .info-card,
  .step {
    transition: none;
  }
}

@media (max-width: 991px) {
  .brand {
    max-width: 100%;
  }

  .nav-links {
    padding-top: 1rem;
    gap: 0.6rem;
  }

  .nav-links .nav-link {
    width: 100%;
  }

  .nav-links .nav-link::after {
    left: 24px;
    right: 24px;
  }

  .nav-dropdown .dropdown-menu {
    box-shadow: none;
    border-radius: 12px;
    margin-top: 0.4rem;
  }
}

@media (max-width: 767px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .cta-row {
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }
}
