/* =====================================================================
   SUMMIT — Free Corporate / Consulting Website Template · uiCookies
   Design concept: "The Advisory Ledger"
   Palette : Ink Navy / Slate / Brass / Marble / Steel / Paper
   Type    : Fraunces (display serif) + IBM Plex Sans (body)
   ===================================================================== */

:root {
  --ink:      #0b1329;   /* deep navy — headers, dark bands   */
  --slate:    #152238;   /* raised navy surface               */
  --slate-2:  #233554;   /* hover / borders on dark           */
  --brass:    #f59e0b;   /* CAG 30 Gold — CTAs, rules, indices*/
  --brass-hi: #fbbf24;   /* brighter gold for hover          */
  --teal:     #0d9488;   /* Geo Teal accent                   */
  --sky:      #38bdf8;   /* Sky blue accent                   */
  --marble:   #e9edf1;   /* cool light section background     */
  --paper:    #0b1329;   /* dark page background              */
  --steel:    #94a3b8;   /* muted text                        */
  --text:     #e2e8f0;   /* body text                         */
  --line:     #233554;   /* hairline border                   */
  --white:    #ffffff;

  --ff-display: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ff-body:    "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(11,19,41,.1), 0 8px 24px rgba(11,19,41,.1);
  --shadow-md: 0 18px 48px rgba(11,19,41,.25);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.06; letter-spacing: -.01em; margin: 0; color: var(--ink); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--ff-body); font-weight: 600;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brass); display: inline-block; }
.eyebrow.on-dark { color: var(--brass-hi); }
.lead { font-size: 1.18rem; color: var(--steel); max-width: 42ch; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lead { margin-inline: auto; }

.h-sec { font-size: clamp(2rem, 4.2vw, 3.05rem); max-width: 18ch; }
.text-brass { color: var(--brass); }

/* skip link */
.skip-link {
  position: absolute; left: 1rem; top: -3.5rem; z-index: 1200;
  background: var(--brass); color: var(--ink); font-weight: 600;
  padding: .7rem 1.1rem; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brass); --fg: var(--ink);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-body); font-weight: 600; font-size: .96rem;
  letter-spacing: .01em; line-height: 1;
  padding: .95rem 1.55rem; border-radius: var(--radius);
  background: var(--bg); color: var(--fg);
  border: 1.5px solid var(--bg); cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { background: var(--brass-hi); border-color: var(--brass-hi); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,151,60,.32); }
.btn-ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn-ghost:hover { --bg: var(--ink); background: var(--ink); border-color: var(--ink); color: var(--white); box-shadow: none; }
.btn-ghost.on-dark { color: var(--white); border-color: rgba(255,255,255,.32); }
.btn-ghost.on-dark:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-arrow svg { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow svg, .btn.btn-arrow:hover svg { transform: translateX(4px); }

.textlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--ink);
  border-bottom: 2px solid var(--brass); padding-bottom: 2px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.textlink svg { width: 16px; height: 16px; }
.textlink:hover { gap: .85rem; color: var(--brass); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; background: rgba(16,26,44,.92);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: 1.2rem;
}
.site-header.scrolled {
  background: rgba(16,26,44,.92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 14px 40px rgba(0,0,0,.28);
  padding-block: .8rem;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--white); font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -.01em; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand .mark path, .brand .mark line { stroke: var(--brass); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  color: rgba(255,255,255,.82); font-weight: 500; font-size: .96rem;
  position: relative; padding-block: .4rem;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--brass); transition: width .28s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: .7rem 1.15rem; font-size: .9rem; }

.nav-toggle {
  display: none; width: 46px; height: 42px; border: 0; border-radius: var(--radius);
  background: rgba(255,255,255,.08); cursor: pointer; padding: 0;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--white); transform: translate(-50%,-50%); transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%,-50%) rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%,-50%) rotate(-45deg); top: 0; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 0 0 auto 0; top: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); padding: 6rem var(--gutter) 2.25rem;
    transform: translateY(-100%); transition: transform .4s var(--ease);
    box-shadow: 0 24px 60px rgba(0,0,0,.4); gap: 0;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-links a { padding: 1.05rem 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 1.15rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 1.5rem; justify-content: center; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(680px, 88vh, 840px);
  padding: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

/* Background Carousel (100% Width & Height) */
.hero-slider-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider-bg .carousel-inner,
.hero-slider-bg .carousel-item {
  width: 100%;
  height: 100%;
  min-height: clamp(680px, 88vh, 840px);
}

.hero-slider-bg .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) contrast(1.02);
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero-slider-bg .carousel-item.active img {
  transform: scale(1.08);
}

/* Transparent Overlay for Slider Image Visibility */
.hero-overlay-backdrop {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
}

/* Content Container Overlaid on Slider */
.hero-content-overlay {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: clamp(8.5rem, 15vw, 11.5rem);
  padding-bottom: clamp(4rem, 7vw, 5.5rem);
}

.hero-copy {
  max-width: 860px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-hi);
  background: rgba(201, 151, 60, 0.16);
  border: 1px solid rgba(201, 151, 60, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 0.55rem 1.2rem;
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero h1 em {
  font-style: italic;
  color: var(--brass-hi);
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--brass-hi);
  font-weight: 600;
  max-width: 65ch;
  line-height: 1.5;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.hero-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.hero-trust b {
  color: var(--white);
  font-weight: 600;
}

.hero-badge-overlay {
  position: static;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-badge-overlay .num {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brass-hi);
  line-height: 1;
}

.hero-badge-overlay small {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  max-width: 190px;
}

/* Slide Caption Badge (Bottom Right corner) */
.slide-caption-badge {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 4;
  background: rgba(11, 19, 41, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 151, 60, 0.4);
  color: #fff;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

/* =====================================================================
   LOGO STRIP
   ===================================================================== */
.logos { background: var(--ink); border-top: 1px solid rgba(255,255,255,.07); padding-block: 2.4rem; }
.logos-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.logos-label { color: rgba(255,255,255,.5); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }
.logos-row { display: flex; align-items: center; gap: clamp(1.5rem,4vw,3rem); flex-wrap: wrap; }
.logo-word { color: rgba(255,255,255,.66); font-family: var(--ff-display); font-weight: 600; font-size: 1.28rem; letter-spacing: .01em; display: inline-flex; align-items: center; gap: .5rem; transition: color .25s var(--ease); }
.logo-word svg { width: 20px; height: 20px; opacity: .8; }
.logo-word:hover { color: var(--white); }

/* Logo Badge Items with Official Images */
.logo-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
  color: #f8fafc;
  text-decoration: none;
}
.logo-badge-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--brass);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--brass);
}
.logo-badge-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.logo-badge-text {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* Icon Utility - Permanently Visible 100% */
.icon {
  display: inline-block;
  vertical-align: -0.15em;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  opacity: 1 !important;
}

/* =====================================================================
   SERVICES — ledger
   ===================================================================== */
.services { background: var(--paper); }
.sec-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: end; margin-bottom: 3.2rem; }
.sec-head .lead { max-width: 46ch; }
@media (max-width: 760px){ .sec-head { grid-template-columns: 1fr; gap: 1rem; } }

.ledger { border-top: 1px solid var(--line); }
.ledger-row {
  display: grid; grid-template-columns: 68px 1.15fr 1.85fr auto;
  gap: 1.5rem; align-items: start;
  padding: 2rem 0.5rem 2rem 0; border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.ledger-row:hover { background: var(--slate); box-shadow: var(--shadow-sm); padding-inline: 1.25rem; border-radius: 6px; }
.ledger-num { font-family: var(--ff-display); font-size: 1.15rem; color: var(--brass); font-weight: 600; padding-top: .2rem; }
.ledger-row h3 { font-size: 1.5rem; }
.ledger-icon { color: var(--brass); opacity: 1; }
.ledger-icon svg { width: 34px; height: 34px; opacity: 1; }
.ledger-body p { margin: 0 0 1rem; color: var(--steel); }
.ledger-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { font-size: .8rem; font-weight: 600; color: var(--text); background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line); border-radius: 100px; padding: .28rem .8rem; }
.ledger-cta { align-self: center; }
.ledger-cta a { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--brass); color: var(--brass); background: rgba(245, 158, 11, 0.12); opacity: 1; }
.ledger-cta a svg { width: 18px; height: 18px; opacity: 1; }
.ledger-cta a:hover { background: var(--brass); color: #000; }
@media (max-width: 820px){
  .ledger-row { grid-template-columns: 48px 1fr; gap: 1rem 1.1rem; }
  .ledger-icon, .ledger-cta { display: none; }
  .ledger-body { grid-column: 1 / -1; }
}

/* =====================================================================
   ABOUT / STATS split
   ===================================================================== */
.about { background: var(--marble); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 8px; box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }
.about-media .rule { position: absolute; left: -1.25rem; top: 2rem; bottom: 2rem; width: 3px; background: var(--brass); border-radius: 3px; }
.about-body h2 { margin-bottom: 1.3rem; }
.about-body p { color: var(--steel); }
.about-sign { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.about-sign .name { font-family: var(--ff-display); font-size: 1.25rem; color: var(--ink); font-weight: 600; }
.about-sign .role { color: var(--steel); font-size: .9rem; }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.stat .n { font-family: var(--ff-display); font-size: clamp(2.2rem,4vw,3rem); font-weight: 600; color: var(--ink); line-height: 1; }
.stat .n .suffix { color: var(--brass); }
.stat .l { display: block; margin-top: .5rem; font-size: .86rem; color: var(--steel); letter-spacing: .01em; }
@media (max-width: 860px){ .about-grid { grid-template-columns: 1fr; } .about-media .rule{ display:none;} }
@media (max-width: 560px){ .stats { grid-template-columns: repeat(2,1fr); gap: 1.75rem 1rem; } }

/* =====================================================================
   PROCESS
   ===================================================================== */
.process { background: var(--ink); color: var(--white); }
.process h2 { color: var(--white); }
.process .lead { color: rgba(255,255,255,.72); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3.2rem; counter-reset: step; }
.step {
  position: relative; background: var(--slate); border: 1px solid var(--slate-2);
  border-radius: 8px; padding: 2rem 1.6rem; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: var(--brass); }
.step .idx { font-family: var(--ff-display); font-size: 3.4rem; font-weight: 600; color: rgba(201,151,60,.28); line-height: .8; }
.step h3 { color: var(--white); font-size: 1.28rem; margin: .9rem 0 .6rem; }
.step p { color: rgba(255,255,255,.68); font-size: .96rem; margin: 0; }
.step .bar { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--brass); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.step:hover .bar { transform: scaleY(1); }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }

/* =====================================================================
   TEAM
   ===================================================================== */
.team { background: var(--paper); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.member { position: relative; border-radius: 8px; overflow: hidden; }
.member .photo { position: relative; aspect-ratio: 4/4.7; overflow: hidden; border-radius: 8px; }
.member .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); transition: filter .5s var(--ease), transform .6s var(--ease); }
.member:hover .photo img { filter: grayscale(0); transform: scale(1.04); }
.member .photo::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(16,26,44,.78) 0%, rgba(16,26,44,0) 48%); }
.member .meta { position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1.05rem; z-index: 2; color: var(--white); }
.member .meta h3 { color: var(--white); font-size: 1.22rem; }
.member .meta .role { font-size: .85rem; color: var(--brass-hi); font-weight: 600; }
.member .socials { display: flex; gap: .5rem; margin-top: .55rem; opacity: 0; transform: translateY(6px); transition: all .3s var(--ease); }
.member:hover .socials { opacity: 1; transform: translateY(0); }
.member .socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.15); display: inline-flex; align-items: center; justify-content: center; color: var(--white); transition: background .25s var(--ease); }
.member .socials a:hover { background: var(--brass); color: var(--ink); }
.member .socials svg { width: 15px; height: 15px; }
@media (max-width: 900px){ .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px){ .team-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }

/* =====================================================================
   CASE STUDIES
   ===================================================================== */
.cases { background: var(--marble); }
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-top: 3rem; }
.case {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case .cover { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.case .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.case:hover .cover img { transform: scale(1.05); }
.case .sector { position: absolute; left: 1rem; top: 1rem; background: var(--ink); color: var(--white); font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 100px; }
.case .body { padding: 1.6rem 1.6rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.case h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.case .body p { color: var(--steel); font-size: .96rem; }
.case .result { display: flex; gap: 1.75rem; margin: 1.1rem 0 1.35rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.case .result .r .n { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 600; color: var(--brass); line-height: 1; }
.case .result .r .k { font-size: .78rem; color: var(--steel); }
.case .body .textlink { margin-top: auto; align-self: flex-start; }
@media (max-width: 900px){ .cases-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* =====================================================================
   TESTIMONIALS — slider
   ===================================================================== */
.quotes { background: var(--paper); overflow: hidden; }
.quotes-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.6rem; flex-wrap: wrap; }
.slider { position: relative; }
.slider-track {
  display: flex; gap: 1.75rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: .5rem; scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.quote {
  scroll-snap-align: start; flex: 0 0 clamp(300px, 46%, 560px);
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 2.4rem; display: flex; flex-direction: column;
}
.quote .qmark { font-family: var(--ff-display); font-size: 3.4rem; color: var(--brass); line-height: .5; height: 1.4rem; }
.quote blockquote { margin: 0 0 1.5rem; font-size: 1.22rem; line-height: 1.55; color: var(--ink); font-family: var(--ff-display); font-weight: 400; }
.quote .who { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.quote .who .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote .who .n { font-weight: 600; color: var(--ink); }
.quote .who .r { font-size: .85rem; color: var(--steel); }
.slider-nav { display: flex; gap: .6rem; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all .25s var(--ease); }
.slider-btn:hover:not(:disabled) { background: var(--ink); border-color: var(--ink); color: var(--white); }
.slider-btn:disabled { opacity: .35; cursor: default; }
.slider-btn svg { width: 20px; height: 20px; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta { position: relative; color: var(--white); overflow: hidden; background: var(--ink); }
.cta .bg { position: absolute; inset: 0; z-index: 0; }
.cta .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.cta::before { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(90deg, rgba(16,26,44,.96) 20%, rgba(16,26,44,.72) 100%); }
.cta .wrap { position: relative; z-index: 2; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.cta h2 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,.78); max-width: 44ch; }
.cta-points { margin-top: 1.5rem; display: grid; gap: .7rem; }
.cta-points li { display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.85); }
.cta-points svg { width: 20px; height: 20px; color: var(--brass-hi); flex: none; }

/* form */
.form-card { background: var(--white); border-radius: 12px; padding: clamp(1.6rem,3vw,2.2rem); box-shadow: var(--shadow-md); }
.form-card h3 { color: var(--ink); font-size: 1.4rem; margin-bottom: .35rem; }
.form-card .fc-sub { color: var(--steel); font-size: .92rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--slate); margin-bottom: .4rem; letter-spacing: .01em; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--ff-body); font-size: 1rem; color: var(--text);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--paper); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(201,151,60,.18); }
.field .err { display: none; color: #c0392b; font-size: .8rem; margin-top: .35rem; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #c0392b; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .82rem; color: var(--steel); margin: .6rem 0 0; }
.form-ok { display: none; background: rgba(201,151,60,.12); border: 1px solid var(--brass); color: var(--ink); padding: .9rem 1rem; border-radius: var(--radius); font-size: .92rem; font-weight: 500; margin-bottom: 1rem; }
.form-ok.show { display: block; }
@media (max-width: 860px){ .cta-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: #0b1320; color: rgba(255,255,255,.66); padding-top: clamp(3.5rem,7vw,5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { max-width: 34ch; font-size: .96rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.07); display: inline-flex; align-items: center; justify-content: center; color: var(--white); transition: background .25s var(--ease), transform .25s var(--ease); }
/* ---------- Footer ---------- */
.site-footer {
  background: #070d1e;
  color: var(--steel);
  padding-block: 4rem 2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 850px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 550px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { font-size: .95rem; margin-top: 1rem; color: var(--steel); max-width: 320px; }
.footer-col h4 { font-family: var(--ff-body); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { display: grid; gap: .6rem; font-size: .95rem; }
.footer-col a:hover { color: var(--brass-hi); }
.footer-contact li { display: flex; gap: .65rem; align-items: flex-start; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .875rem;
}

/* ---------- Hero Carousel & Slider Additions ---------- */
.hero-slider-bg .carousel-control-prev,
.hero-slider-bg .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 19, 41, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  z-index: 5;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.hero-slider-bg .carousel-control-prev:hover,
.hero-slider-bg .carousel-control-next:hover {
  opacity: 1;
  background: var(--brass);
  border-color: var(--brass-hi);
}

.hero-slider-bg .carousel-control-prev {
  left: 2rem;
}

.hero-slider-bg .carousel-control-next {
  right: 2rem;
}

.hero-slider-bg .carousel-indicators {
  bottom: 2rem;
  z-index: 5;
  margin-bottom: 0;
}

.hero-slider-bg .carousel-indicators button {
  width: 36px;
  height: 5px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.hero-slider-bg .carousel-indicators button.active {
  width: 52px;
  background-color: var(--brass-hi);
  opacity: 1;
}

@media (max-width: 768px) {
  .slide-caption-badge {
    display: none;
  }
  .hero-slider-bg .carousel-control-prev {
    left: 0.6rem;
  }
  .hero-slider-bg .carousel-control-next {
    right: 0.6rem;
  }
  .hero-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.countdown-box-wrap {
  display: inline-flex;
  gap: 1rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  margin-block: 1rem;
}
.countdown-unit {
  text-align: center;
  min-width: 60px;
}
.countdown-unit .num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}
.countdown-unit .lbl {
  font-size: 0.7rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-content-dark {
  background: var(--slate);
  color: #fff;
  border: 1px solid var(--slate-2);
  border-radius: 8px;
}

.form-control-dark, .form-select-dark {
  background: #0b1329;
  border: 1px solid var(--slate-2);
  color: #fff;
}
.form-control-dark:focus, .form-select-dark:focus {
  background: #0b1329;
  border-color: var(--brass);
  color: #fff;
}

/* =====================================================================
   EVENT SCHEDULE & TIMELINE (Inspired by Eventz)
   ===================================================================== */
.schedule-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding-block: 5rem;
}

.schedule-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.schedule-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--steel);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}

.schedule-tab-btn small {
  font-size: 0.75rem;
  opacity: 0.7;
  font-weight: 400;
}

.schedule-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.schedule-tab-btn.active {
  background: var(--brass);
  color: #000;
  border-color: var(--brass);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.schedule-tab-btn.active small {
  color: #111;
  opacity: 0.9;
}

.schedule-timeline {
  display: grid;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-item {
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s var(--ease);
}

.schedule-item:hover {
  border-color: var(--brass);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .schedule-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.schedule-time {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sky);
  display: flex;
  flex-direction: column;
}

.schedule-time .venue {
  font-size: 0.78rem;
  color: var(--steel);
  font-weight: 500;
  margin-top: 0.2rem;
}

.schedule-content {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.schedule-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brass);
  flex-shrink: 0;
}

.schedule-info h4 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.schedule-info p {
  font-size: 0.88rem;
  color: var(--steel);
  margin: 0;
  line-height: 1.4;
}

.schedule-speaker-name {
  color: var(--brass-hi);
  font-weight: 600;
}

/* =====================================================================
   PRICING CARDS (Inspired by Eventz)
   ===================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.pricing-card.featured {
  background: linear-gradient(145deg, #111c33 0%, #162445 100%);
  border: 2px solid var(--brass);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--brass);
  color: #000;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
}

.pricing-header {
  margin-bottom: 1.5rem;

}

.pricing-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brass);
  line-height: 1;
}

.pricing-price span {
  font-size: 0.9rem;
  color: var(--steel);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  gap: 0.85rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li.active {
  color: #f1f5f9;
}

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }
