/* ================================================================
   CIRS DESIGN SYSTEM — OBSIDIAN
   Dark navy + gold. Editorial. Premium financial services.
   ================================================================ */

:root {
  --dark:      #050B1A;
  --dark-2:    #0C1628;
  --dark-3:    #162040;
  --dark-4:    #1E2E55;
  --gold:      #C8922A;
  --gold-lt:   #E8B84B;
  --white:     #FFFFFF;
  --ice:       #F4F7FF;
  --smoke:     #F8FAFC;
  --text:      #1A1F36;
  --muted:     #64748B;
  --muted-dk:  #8CA0C4;
  --border:    rgba(255,255,255,0.08);
  --border-lt: #E2E8F0;
  --fh:        'Sora', sans-serif;
  --fb:        'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--fh); font-weight: 700; line-height: 1.15; }
p { line-height: 1.75; }
a { transition: color .2s; }

img { max-width: 100%; }

/* ================================================================
   PRELOADER
   ================================================================ */
.cirs-loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
.cirs-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.cirs-loader-ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.08);
  border-top-color: var(--gold);
  animation: cirspin .65s linear infinite;
}
@keyframes cirspin { to { transform: rotate(360deg); } }

/* ================================================================
   NAVIGATION
   ================================================================ */
.cirs-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.cirs-nav .container-fluid,
.cirs-nav .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.cirs-nav-inner {
  display: flex; align-items: center;
  height: 68px; gap: 0;
}
.cirs-nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-right: 48px; flex-shrink: 0;
}
.cirs-nav-brand img { height: 40px; width: auto; }
.cirs-nav-brand span {
  font-family: var(--fh); font-size: 17px; font-weight: 700;
  color: white; letter-spacing: -0.3px;
}
.cirs-nav-links {
  display: flex; list-style: none; margin: 0; padding: 0;
  flex: 1; gap: 0;
}
.cirs-nav-links > li { position: relative; }
.cirs-nav-links > li > a {
  display: block;
  padding: 0 14px;
  height: 68px; line-height: 68px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
  position: relative;
}
.cirs-nav-links > li > a::after {
  content: '';
  position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .2s ease;
}
.cirs-nav-links > li:hover > a,
.cirs-nav-links > li.current > a { color: #fff; }
.cirs-nav-links > li:hover > a::after { transform: scaleX(1); }

/* Dropdown */
.cirs-nav-links .cirs-dd { display: none; }
.cirs-nav-links > li > a .caret {
  font-size: 9px; margin-left: 4px; opacity: .5;
  transition: transform .2s;
}
.cirs-nav-links > li:hover > a .caret { transform: rotate(180deg); }
.cirs-dropdown {
  position: absolute; top: calc(100% + 1px); left: 0;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  padding: 6px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.cirs-nav-links > li:hover .cirs-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.cirs-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: all .15s;
}
.cirs-dropdown a:hover {
  color: #fff; padding-left: 24px;
  background: rgba(255,255,255,.04);
}

/* Nav CTA */
.cirs-nav-end { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.cirs-nav-cta {
  display: inline-block;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--dark) !important;
  font-size: 13px; font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .1s;
}
.cirs-nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* Mobile toggle */
.cirs-nav-toggle {
  display: none;
  background: none; border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; padding: 7px 10px;
  cursor: pointer; color: white; font-size: 16px;
}

/* Mobile menu */
.cirs-mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--dark-2);
  z-index: 998;
  overflow-y: auto;
  padding: 12px 0 40px;
  border-top: 1px solid var(--border);
}
.cirs-mobile-menu.open { display: block; }
.cirs-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.cirs-mobile-menu ul li a {
  display: block; padding: 13px 24px;
  font-size: 15px; color: rgba(255,255,255,.75);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.cirs-mobile-menu ul li a:hover { color: #fff; background: rgba(255,255,255,.03); }
.cirs-mobile-menu ul li.sub-header > a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; padding-bottom: 6px;
  border-bottom: none; pointer-events: none;
}
.cirs-mobile-menu ul li.sub-item > a { padding-left: 36px; font-size: 14px; }
.cirs-mobile-menu .m-cta {
  margin: 20px 24px 0;
  display: block; padding: 13px; text-align: center;
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 14px; border-radius: 4px;
  text-decoration: none;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--gold); color: var(--dark);
  font-family: var(--fh); font-size: 13px; font-weight: 700;
  border-radius: 4px; text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .3px;
}
.btn-gold:hover {
  background: var(--gold-lt); color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,146,42,.3);
}
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  background: transparent; color: rgba(255,255,255,.85);
  font-size: 13px; font-weight: 600;
  border-radius: 4px; border: 1px solid rgba(255,255,255,.25);
  text-decoration: none; cursor: pointer;
  transition: all .2s;
}
.btn-ghost-white:hover {
  border-color: #fff; color: #fff;
  background: rgba(255,255,255,.06);
}
.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  background: transparent; color: var(--text);
  font-size: 13px; font-weight: 600;
  border-radius: 4px; border: 1.5px solid var(--border-lt);
  text-decoration: none; cursor: pointer;
  transition: all .2s;
}
.btn-ghost-dark:hover { border-color: var(--text); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--dark); color: #fff;
  font-size: 13px; font-weight: 700;
  border-radius: 4px; text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-dark:hover { background: var(--dark-3); color: #fff; transform: translateY(-1px); }

/* ================================================================
   LABELS / EYEBROWS
   ================================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.eyebrow.light { color: rgba(200,146,42,.8); }
.eyebrow.light::before { background: rgba(200,146,42,.8); }

/* ================================================================
   HERO
   ================================================================ */
.cirs-hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center;
  padding-top: 68px;
  position: relative; overflow: hidden;
}
.cirs-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(200,146,42,.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(30,70,160,.15) 0%, transparent 50%);
  pointer-events: none;
}
.cirs-hero-bg-text {
  position: absolute; right: -30px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--fh);
  font-size: clamp(200px, 22vw, 380px);
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: 1; letter-spacing: -15px;
  pointer-events: none; user-select: none;
}
.cirs-hero-inner { padding: 80px 0 100px; position: relative; z-index: 1; }
.cirs-hero .eyebrow { margin-bottom: 24px; }
.cirs-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800; color: #fff;
  line-height: 1.06; margin-bottom: 22px; max-width: 740px;
}
.cirs-hero h1 em { font-style: normal; color: var(--gold); }
.cirs-hero > .container > * { position: relative; z-index: 1; }
.cirs-hero-lead {
  font-size: 17px; color: var(--muted-dk);
  max-width: 520px; line-height: 1.8; margin-bottom: 38px;
}
.cirs-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.cirs-hero-trust {
  display: flex; gap: 32px; flex-wrap: wrap; align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.cirs-trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: .3px;
  color: rgba(255,255,255,.4);
}
.cirs-trust-item i { color: var(--gold); font-size: 14px; }

/* ================================================================
   PAGE HEADER (inner pages)
   ================================================================ */
.cirs-page-header {
  background: var(--dark);
  padding: 148px 0 72px;
  position: relative; overflow: hidden;
}
.cirs-page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(200,146,42,.08) 0%, transparent 55%);
  pointer-events: none;
}
.cirs-page-header .eyebrow { margin-bottom: 18px; }
.cirs-page-header h1 {
  font-size: clamp(34px, 5vw, 60px); font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 16px;
  max-width: 700px;
}
.cirs-page-header p {
  font-size: 17px; color: var(--muted-dk);
  max-width: 540px; line-height: 1.75; margin-bottom: 24px;
}
.cirs-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.3);
}
.cirs-breadcrumb a { color: rgba(255,255,255,.35); text-decoration: none; }
.cirs-breadcrumb a:hover { color: rgba(255,255,255,.65); }
.cirs-breadcrumb .sep { color: rgba(255,255,255,.18); }
.cirs-breadcrumb .curr { color: rgba(255,255,255,.5); }

/* ================================================================
   MARQUEE
   ================================================================ */
.cirs-marquee {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0; overflow: hidden;
}
.cirs-marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.cirs-marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 36px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.cirs-marquee-item .dot { color: var(--gold); font-size: 20px; line-height: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   STATS STRIP
   ================================================================ */
.cirs-stats {
  background: var(--dark-2);
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cirs-stat {
  text-align: center;
  padding: 0 20px;
}
.cirs-stat .num {
  font-family: var(--fh);
  font-size: 58px; font-weight: 800;
  color: #fff; line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.cirs-stat .num sub,
.cirs-stat .num .suf { color: var(--gold); font-size: .55em; font-weight: 700; }
.cirs-stat .label {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--muted-dk);
}
.cirs-stat-div {
  width: 1px; height: 64px;
  background: var(--border);
  margin: 0 auto; display: block;
}

/* ================================================================
   ABOUT
   ================================================================ */
.cirs-about { padding: 110px 0; background: #fff; }
.cirs-about-img {
  position: relative;
}
.cirs-about-img img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: 10px; display: block;
}
.cirs-about-float {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--dark);
  padding: 26px 30px; border-radius: 8px;
  border: 1px solid var(--border);
  min-width: 190px;
}
.cirs-about-float .big {
  display: block; font-family: var(--fh);
  font-size: 48px; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.cirs-about-float .sm {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1.5px;
}
.cirs-about-text { padding-left: 60px; }
.cirs-about-text h2 {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  color: var(--text); line-height: 1.15; margin: 18px 0 18px;
}
.cirs-about-text p {
  font-size: 16px; color: var(--muted); line-height: 1.8;
  margin-bottom: 24px;
}
.value-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 30px; }
.chip {
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  border: 1.5px solid var(--border-lt); color: var(--text);
  transition: all .2s; cursor: default;
}
.chip:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ================================================================
   INVESTMENT FIELDS (dark card grid)
   ================================================================ */
.cirs-fields { background: var(--dark); padding: 110px 0; }
.cirs-field-card {
  position: relative; border-radius: 10px; overflow: hidden;
  height: 370px; display: block; text-decoration: none;
}
.cirs-field-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.cirs-field-card:hover img { transform: scale(1.07); }
.cirs-field-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(5,11,26,.96) 0%,
    rgba(5,11,26,.4) 55%,
    transparent 100%);
  transition: background .3s;
}
.cirs-field-card:hover .cirs-field-overlay {
  background: linear-gradient(to top,
    rgba(5,11,26,.98) 0%,
    rgba(5,11,26,.72) 100%);
}
.cirs-field-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 24px;
}
.cirs-field-tag {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.cirs-field-card h3 {
  font-size: 21px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.cirs-field-card p {
  font-size: 13px; color: rgba(255,255,255,.6);
  margin: 0 0 14px; line-height: 1.65;
  opacity: 0; transform: translateY(8px);
  transition: all .3s ease;
}
.cirs-field-card:hover p { opacity: 1; transform: translateY(0); }
.cirs-field-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  font-size: 13px; transition: all .2s;
}
.cirs-field-card:hover .cirs-field-arrow {
  background: var(--gold); border-color: var(--gold); color: var(--dark);
}

/* ================================================================
   JOURNEY (numbered list)
   ================================================================ */
.cirs-journey { padding: 110px 0; background: var(--ice); }
.cirs-journey-list { margin-top: 52px; }
.cirs-journey-row {
  display: grid; grid-template-columns: 52px 1fr auto;
  align-items: start; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-lt);
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}
.cirs-journey-row:first-child { border-top: 1px solid var(--border-lt); }
.cirs-journey-row:hover { padding-left: 14px; }
.cirs-journey-row:hover .jnum { color: var(--gold); }
.cirs-journey-row:hover .jarrow {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.jnum {
  font-family: var(--fh); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; color: #c8d4e8;
  padding-top: 5px; transition: color .2s;
}
.jcontent h3 {
  font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 6px;
}
.jcontent p {
  font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0;
}
.jarrow {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--border-lt);
  color: var(--muted); margin-top: 4px;
  transition: all .2s;
}

/* ================================================================
   WHY CHOOSE
   ================================================================ */
.cirs-why { padding: 110px 0; background: #fff; }
.cirs-why-img {
  position: relative; height: 520px; border-radius: 10px; overflow: hidden;
}
.cirs-why-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.cirs-why-badge {
  position: absolute; top: -20px; right: -20px;
  background: var(--gold);
  padding: 22px 26px; border-radius: 8px;
  text-align: center; min-width: 140px;
}
.cirs-why-badge .big {
  display: block; font-family: var(--fh);
  font-size: 40px; font-weight: 800;
  color: var(--dark); line-height: 1; margin-bottom: 4px;
}
.cirs-why-badge .sm {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(5,11,26,.65);
}
.cirs-why-text { padding-left: 60px; }
.cirs-why-text h2 {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  color: var(--text); line-height: 1.15; margin: 18px 0 16px;
}
.cirs-why-text > p {
  font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px;
}
.cirs-why-item {
  display: flex; gap: 18px; padding: 22px 0;
  border-bottom: 1px solid var(--border-lt);
}
.cirs-why-item:first-of-type { border-top: 1px solid var(--border-lt); }
.cirs-why-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 8px; background: rgba(200,146,42,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold); margin-top: 2px;
}
.cirs-why-item h4 {
  font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.cirs-why-item p {
  font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0;
}

/* ================================================================
   SOLUTIONS GRID (dark)
   ================================================================ */
.cirs-solutions { padding: 110px 0; background: var(--dark-2); }
.sol-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 34px 26px;
  height: 100%; display: block; text-decoration: none;
  transition: all .3s;
}
.sol-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(200,146,42,.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.sol-card .ic {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(200,146,42,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold); margin-bottom: 20px;
}
.sol-card h4 {
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px;
}
.sol-card p {
  font-size: 14px; color: var(--muted-dk); line-height: 1.7; margin-bottom: 18px;
}
.sol-card .link {
  font-size: 12px; color: var(--gold); font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: .5px;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cirs-cta {
  padding: 96px 0;
  background: var(--gold);
  position: relative; overflow: hidden;
}
.cirs-cta::after {
  content: 'CBIS';
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--fh); font-size: 300px; font-weight: 900;
  color: rgba(5,11,26,.06); line-height: 1;
  pointer-events: none;
}
.cirs-cta h2 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 800;
  color: var(--dark); line-height: 1.1; margin-bottom: 14px;
}
.cirs-cta p {
  font-size: 17px; color: rgba(5,11,26,.65);
  max-width: 500px; line-height: 1.75; margin-bottom: 0;
}
.cirs-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* ================================================================
   FOOTER
   ================================================================ */
.cirs-footer {
  background: var(--dark);
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}
.cirs-footer h5 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.cirs-footer ul { list-style: none; padding: 0; margin: 0; }
.cirs-footer ul li { margin-bottom: 9px; }
.cirs-footer ul li a {
  font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .2s;
}
.cirs-footer ul li a:hover { color: #fff; }
.cirs-footer-brand h4 {
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px;
}
.cirs-footer-brand p {
  font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75;
  margin-bottom: 5px;
}
.cirs-footer-brand a { color: var(--gold); text-decoration: none; }
.cirs-footer-social {
  display: flex; gap: 8px; margin-top: 20px;
}
.cirs-footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 14px; text-decoration: none;
  transition: all .2s;
}
.cirs-footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.cirs-footer-bottom {
  margin-top: 60px; padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.cirs-footer-bottom p { font-size: 12px; color: rgba(255,255,255,.28); margin: 0; }
.cirs-footer-bottom a { color: var(--gold); text-decoration: none; }
.cirs-footer-legal {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.cirs-footer-legal a {
  font-size: 11px; color: rgba(255,255,255,.28); text-decoration: none;
}
.cirs-footer-legal a:hover { color: rgba(255,255,255,.55); }

/* ================================================================
   INNER PAGE — JOURNEY PAGES
   ================================================================ */
.cirs-section { padding: 90px 0; }
.cirs-section.alt { background: var(--ice); }
.cirs-section.dark { background: var(--dark); }
.cirs-section.dark-2 { background: var(--dark-2); }

.feature-grid { margin-top: 40px; }
.feature-item {
  display: flex; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--border-lt);
}
.feature-item:first-child { border-top: 1px solid var(--border-lt); }
.feature-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 8px; background: rgba(200,146,42,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold); margin-top: 2px;
}
.feature-item h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

.freedom-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 24px;
  height: 100%;
}
.freedom-card .icon {
  font-size: 22px; color: var(--gold); margin-bottom: 14px; display: block;
}
.freedom-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.freedom-card p { font-size: 14px; color: var(--muted-dk); line-height: 1.65; margin: 0; }

.journey-sidenav {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 28px;
  position: sticky; top: 90px;
}
.journey-sidenav h5 {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px;
}
.journey-sidenav ul { list-style: none; margin: 0; padding: 0; }
.journey-sidenav ul li { margin-bottom: 4px; }
.journey-sidenav ul li a {
  display: block; padding: 10px 12px; border-radius: 6px;
  font-size: 14px; color: rgba(255,255,255,.55);
  text-decoration: none; transition: all .2s;
}
.journey-sidenav ul li a:hover,
.journey-sidenav ul li a.active {
  background: rgba(255,255,255,.06); color: #fff;
}
.journey-sidenav ul li a.active { color: var(--gold); }

/* ================================================================
   REAL ESTATE / INVESTMENT CARDS
   ================================================================ */
.invest-card {
  border: 1px solid var(--border-lt); border-radius: 10px;
  overflow: hidden; background: #fff; height: 100%;
  transition: all .25s;
}
.invest-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.invest-card img {
  width: 100%; height: 210px; object-fit: cover; display: block;
}
.invest-card-body { padding: 20px; }
.invest-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
  display: block;
}
.invest-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.invest-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.invest-stats {
  display: flex; background: var(--smoke); border-radius: 6px;
  overflow: hidden; margin-bottom: 12px;
}
.ist {
  flex: 1; text-align: center; padding: 9px 4px;
  border-right: 1px solid var(--border-lt);
}
.ist:last-child { border-right: none; }
.ist .lbl {
  display: block; font-size: 8px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3px;
}
.ist .val { font-size: 13px; font-weight: 700; color: var(--text); }
.prog-wrap { height: 4px; background: var(--border-lt); border-radius: 2px; margin-bottom: 4px; overflow: hidden; }
.prog-bar { height: 100%; background: var(--gold); border-radius: 2px; }
.funded-lbl { font-size: 11px; color: var(--muted); font-weight: 600; }

.managed-fund-card {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px;
}
.managed-fund-card img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.managed-fund-card h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.managed-fund-card p { font-size: 14px; color: var(--muted-dk); line-height: 1.7; }
.fund-stat { text-align: center; }
.fund-stat .val { font-size: 22px; font-weight: 800; color: var(--gold); display: block; margin-bottom: 4px; }
.fund-stat .lbl { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* ================================================================
   AVIATION / TRENDS
   ================================================================ */
.trend-card {
  display: flex; gap: 18px; padding: 26px;
  background: #fff; border: 1px solid var(--border-lt);
  border-radius: 10px; margin-bottom: 14px; transition: all .2s;
}
.trend-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  border-color: rgba(200,146,42,.3);
}
.trend-card img {
  width: 76px; height: 76px; object-fit: cover;
  border-radius: 8px; flex-shrink: 0;
}
.trend-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.trend-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

.opp-card {
  background: #fff; border: 1px solid var(--border-lt);
  border-radius: 10px; padding: 28px 24px; height: 100%;
  transition: all .2s;
}
.opp-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); border-color: rgba(200,146,42,.3); }
.opp-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.opp-card ul { list-style: none; padding: 0; margin: 0; }
.opp-card ul li {
  font-size: 14px; color: var(--muted); line-height: 1.65;
  padding: 9px 0; border-bottom: 1px solid var(--border-lt);
}
.opp-card ul li:last-child { border-bottom: none; }
.opp-card ul li strong { color: var(--text); }

/* ================================================================
   CONTACT
   ================================================================ */
.cirs-contact { padding: 100px 0; background: var(--ice); }
.contact-form-card {
  background: #fff; border-radius: 12px; padding: 48px;
  border: 1px solid var(--border-lt);
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.contact-form-card h2 { font-size: 30px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.contact-form-card > p { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.cirs-field {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border-lt);
  border-radius: 6px; font-family: var(--fb); font-size: 14px;
  color: var(--text); outline: none; background: #fff;
  transition: border-color .2s; display: block; margin-bottom: 14px;
}
.cirs-field:focus { border-color: var(--gold); }
textarea.cirs-field { min-height: 130px; resize: vertical; }
.contact-info-card {
  background: var(--dark); border-radius: 12px; padding: 40px;
  height: 100%;
}
.contact-info-card h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.contact-info-card > p { font-size: 14px; color: var(--muted-dk); margin-bottom: 32px; line-height: 1.7; }
.ci-item {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.ci-item:first-of-type { padding-top: 0; }
.ci-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.ci-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(200,146,42,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--gold); flex-shrink: 0;
}
.ci-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 4px;
}
.ci-item a, .ci-item span {
  font-size: 14px; color: rgba(255,255,255,.8); text-decoration: none;
}
.ci-item a:hover { color: var(--gold); }

/* ================================================================
   LEADERSHIP
   ================================================================ */
.team-card {
  text-align: center; transition: all .25s;
}
.team-card:hover { transform: translateY(-5px); }
.team-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 10px; margin-bottom: 16px;
  filter: grayscale(20%);
  transition: filter .3s;
}
.team-card:hover img { filter: none; }
.team-card h5 {
  font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.team-card span { font-size: 13px; color: var(--muted); line-height: 1.4; display: block; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-value-card {
  background: #fff; border: 1px solid var(--border-lt);
  border-radius: 10px; padding: 28px;
  transition: box-shadow .2s;
}
.about-value-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.about-value-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.about-value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ================================================================
   UTILITIES
   ================================================================ */
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.text-gold { color: var(--gold) !important; }
.text-white-65 { color: rgba(255,255,255,.65) !important; }
.bg-dark-cirs { background: var(--dark) !important; }
.mt-cirs { margin-top: 110px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199px) {
  .cirs-about-text, .cirs-why-text { padding-left: 40px; }
}
@media (max-width: 991px) {
  .cirs-nav-links { display: none; }
  .cirs-nav-toggle { display: flex; align-items: center; }
  .cirs-nav-end .cirs-nav-cta { display: none; }
  .cirs-about-text, .cirs-why-text { padding-left: 0; margin-top: 36px; }
  .cirs-about-float { position: relative; bottom: 0; left: 0; margin-top: 16px; display: inline-block; }
  .cirs-why-badge { position: relative; top: 0; right: 0; margin-bottom: 20px; display: inline-block; }
  .cirs-why-img { min-height: 300px; }
  .cirs-hero h1 { font-size: 42px; }
  .cirs-hero-bg-text { display: none; }
}
@media (max-width: 767px) {
  .cirs-hero { min-height: auto; padding-bottom: 70px; }
  .cirs-hero h1 { font-size: 36px; }
  .cirs-stat .num { font-size: 44px; }
  .contact-form-card { padding: 28px 22px; }
  .cirs-journey-row { grid-template-columns: 38px 1fr auto; }
  .cirs-cta::after { display: none; }
  .cirs-footer-bottom { flex-direction: column; text-align: center; }
}
