:root {
  --navy: #081426;
  --navy2: #10213a;
  --navy3: #172b49;
  --gold: #c9a45c;
  --gold2: #f1d28a;
  --cream: #f6f0e6;
  --white: #fff;
  --slate: #d9e2ef;
  --ink: #111827;
  --muted: #64748b;
  --card: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  color: var(--ink);
  background: #f7f4ee;
  line-height: 1.6;
}
body.is-loading, body.is-loading * {
  cursor: wait !important;
}
section {
  scroll-margin-top: 80px;
}
a {
  text-decoration: none;
  color: inherit;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 20, 38, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 18px;
  background: radial-gradient(circle at 30% 20%, rgba(241, 210, 138, 0.3), transparent 45%);
}
.links {
  display: flex;
  gap: 22px;
  color: #e9eef7;
  font-size: 14px;
  align-items: center;
}
.links a:hover {
  color: var(--gold2);
}
.cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #101827 !important;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(201, 164, 92, 0.22);
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, rgba(201, 164, 92, 0.25), transparent 25%), linear-gradient(135deg, #071222 0%, #0d1b31 45%, #162b4a 100%);
  color: white;
}
.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  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: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: auto;
  padding: 92px 22px 72px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  color: var(--gold2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: 61px;
  line-height: 1.02;
  margin: 16px 0 22px;
}
.hero p {
  font-size: 19px;
  color: #edf4ff;
  max-width: 680px;
}
.btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111827;
}
.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  background: rgba(255, 255, 255, 0.06);
}
.dash {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.dash h3 {
  margin: 0 0 16px;
  color: white;
}
.section {
  max-width: 1180px;
  margin: auto;
  padding: 78px 22px;
}
.section h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #0d1b31;
}
.lead {
  font-size: 18px;
  color: #475569;
  max-width: 790px;
}
.service-header {
  display: flex;
  gap: 20px;

  .icon {
    margin-bottom: 0;
  }
}
.service-description {
  padding: 24px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  scroll-margin-top: 104px;

  *:last-child {
    margin-bottom: 0;
  }
}
.service-description:not(:last-of-type) {
  margin-bottom: 40px;
}
.two-column {
  column-count: 2;
  column-gap: 40px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.card {
  background: white;
  border: 1px solid #eadfcb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  transition: 0.25s;
}
.card:hover {
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.13);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #10213a, #203a61);
  color: var(--gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.reverse {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy2);
}
.bi-currency-dollar,
.bi-diagram-3-fill {
  font-size: 28px;
}
.card h3 {
  margin: 0 0 10px;
  color: #0f172a;
}
.dark {
  background: linear-gradient(135deg, #081426, #132845);
  color: white;
}
.dark .section h2,
.dark .card h3 {
  color: white;
}
.dark .lead,
.dark p,
.dark li {
  color: #dfe9f7;
}
.dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}
.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy2);
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
}
.panel {
  background: white;
  border-radius: 28px;
  padding: 34px;
  border: 1px solid #eadfcb;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
.quote {
  font-family: Georgia, serif;
  font-size: 29px;
  color: #0d1b31;
  line-height: 1.3;
}
.footer {
  background: #06101f;
  color: #d9e2ef;
  padding: 50px 0 16px;
  > div {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.footer-inner {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 32px;
  text-align: center;
}
.footer b {
  color: white;
}
.footer a {
  color: #d9e2ef;
}
.page-hero {
  background: linear-gradient(135deg, #081426, #18304f);
  color: white;
  padding: 72px 22px;
}
.page-hero div {
  max-width: 1180px;
  margin: auto;
}
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: 52px;
  margin: 12px 0;
}
.cfo-form {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(135deg, #081426, #132845);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.3),
    0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.cfo-form h2 {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.form-subtitle {
  margin: 0 0 24px 0;
  font-size: 15px;
  line-height: 1.5;
  color: #dfe9f7;
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #dfe9f7;
  text-transform: uppercase;
}

.form-group input,
.cfo-form textarea {
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  font-size: 16px;
  color: var(--white);
  transition: all 0.2s ease-in-out;
}

.cfo-form textarea {
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  resize: vertical;
  min-height: 72px;
}

.form-group input::placeholder,
.cfo-form textarea::placeholder {
  color: var(--slate);
  opacity: 0.5;
}

.form-group input:focus,
.cfo-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.15);
}

.cf-turnstile-container {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.cfo-form button {
  width: 100%;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.cfo-form button:hover {
  background: linear-gradient(var(--gold2), var(--gold2));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(241, 210, 138, 0.2);
}

.cfo-form button:active {
  transform: translateY(0);
}

#form-status {
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
}

.status-success {
  color: white;
}
.status-error {
  color: #f87171;
}
@media (max-width: 850px) {
  .links {
    display: none;
  }
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 42px;
  }
  .grid2,
  .grid3,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 54px 20px;
  }
  .service-description {
    .service-header {
      flex-wrap: wrap;
      .icon {
        height: 42px;
        width: 42px;
        border-radius: 12px;
      }
      h2 {
        font-size: 36px;
      }
    }
  }
  .two-column {
    column-count: 1;
  }
  .footer > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
