@font-face{
  font-family:'ConstantiaCustom';
  src:url('/constan.ttf') format('truetype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'HelveticaNeueCustom';
  src:url('/HelveticaNeue-Roman.otf') format('opentype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

:root{
  --brand:#2a368f;
  --brand-dark:#1f275f;
  --brand-mid:#3f4fb3;
  --brand-light:#6271d6;
  --white:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --surface:#ffffff;
  --surface-soft:#f6f8fc;
  --border:rgba(42,54,143,0.14);
  --shadow:0 12px 34px rgba(20,28,80,0.18);
  --shadow-soft:0 6px 20px rgba(20,28,80,0.12);
  --max-width:1400px;
  --header-height:72px;

  --lp-blue:#1f5f96;
  --lp-blue-dark:#174c78;
  --lp-gold:#e0ad18;
  --lp-gold-dark:#bc8f10;
  --lp-cream:#f2ecd7;
  --lp-check:#76b881;
  --lp-red:#c54b33;
  --lp-red-dark:#a53b27;
  --lp-gray-bg:#f4f4f4;
  --lp-gray-line:#d7d7d7;
}

*{box-sizing:border-box}

html, body, main{
  min-height:100%;
}

body{
  margin:0;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  line-height:1.6;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit}

/* Header / nav */
header{
  background:
    linear-gradient(135deg, #1f275f 0%, #2a368f 38%, #4455c6 100%);
  color:var(--white);
  padding:12px 20px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid rgba(255,255,255,0.14);
  box-shadow:0 10px 30px rgba(14, 20, 58, 0.26);
  backdrop-filter:blur(10px);
}

.header-left{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.logo{
  font-family:'ConstantiaCustom', Georgia, serif;
  font-weight:700;
  font-size:1.12rem;
  color:var(--white);
  text-decoration:none;
  letter-spacing:.2px;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:12px;
  background:rgba(255,255,255,0.08);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.08);
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.logo:hover{
  background:rgba(255,255,255,0.14);
  transform:translateY(-1px);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.12), 0 8px 18px rgba(0,0,0,0.12);
}

nav{
  position:relative;
}

.menu-button{
  appearance:none;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  color:var(--white);
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-weight:700;
  font-size:0.98rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  box-shadow:inset 0 -1px 0 rgba(255,255,255,0.08);
  transition:background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.menu-button:hover{
  background:rgba(255,255,255,0.16);
  border-color:rgba(255,255,255,0.24);
  transform:translateY(-1px);
}

.menu-button:focus{
  outline:2px solid rgba(255,255,255,0.28);
  outline-offset:2px;
}

.menu-button svg{
  transition:transform .2s ease;
}

.menu-button[aria-expanded="true"] svg{
  transform:rotate(180deg);
}

.dropdown{
  position:absolute;
  top:100%;
  left:0;
  margin-top:10px;
  background:var(--surface);
  color:var(--text);
  border-radius:16px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  width:280px;
  display:none;
  flex-direction:column;
  padding:10px;
  z-index:1100;
  box-sizing:border-box;
  overflow:hidden;
}

.dropdown.show,
.dropdown.mobile-full{
  display:flex;
}

.dropdown a{
  padding:12px 14px;
  display:block;
  text-decoration:none;
  color:var(--brand);
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-weight:700;
  border-radius:12px;
  width:100%;
  transition:background .18s ease, color .18s ease, transform .18s ease;
}

.dropdown a:hover,
.dropdown a:focus{
  background:#eef2ff;
  color:var(--brand-dark);
  transform:translateX(2px);
}

.dropdown .divider{
  border-top:1px solid #dbe2f1;
  margin:6px 0;
}

/* Mobile hamburger */
.menu-toggle{
  display:none;
  appearance:none;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  color:var(--white);
  cursor:pointer;
  padding:10px;
  border-radius:12px;
  line-height:1;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.menu-toggle:hover{
  background:rgba(255,255,255,0.16);
  border-color:rgba(255,255,255,0.24);
  transform:translateY(-1px);
}

.menu-toggle:focus{
  outline:2px solid rgba(255,255,255,0.28);
  outline-offset:2px;
}

/* Layout */
main{
  padding-top:var(--header-height);
}

section{
  padding:0 20px 0;
  max-width:var(--max-width);
  margin:auto;
}

h1, h2, h3, h4{
  color:var(--brand);
  font-family:'ConstantiaCustom', Georgia, serif;
}

h2{
  margin-top:0;
}

/* Buttons */
.cta-button,
.btn{
  display:inline-block;
  background:linear-gradient(135deg, #2a368f 0%, #4455c6 100%);
  color:var(--white);
  padding:11px 18px;
  text-decoration:none;
  border-radius:10px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-weight:700;
  border:none;
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.cta-button:hover,
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(31,39,95,0.22);
  filter:brightness(1.02);
  background:linear-gradient(135deg, #223083 0%, #3b4cb6 100%);
}

/* Footer */
footer{
  background:#f4f6fb;
  text-align:center;
  padding:20px;
  margin-top:40px;
  border-top:3px solid var(--brand);
  color:#334155;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
}

/* Popup */
#popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(5,10,30,0.72);
  justify-content:center;
  align-items:center;
  z-index:2000;
}

#popup .popup-content{
  background:#fff;
  padding:20px;
  border-radius:16px;
  max-width:420px;
  width:92%;
  text-align:center;
  box-sizing:border-box;
  box-shadow:var(--shadow);
}

#popup input,
#popup button{
  width:100%;
  padding:10px;
  margin:8px 0;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
}

#popup button[type="submit"]{
  background:linear-gradient(135deg, #2a368f 0%, #4455c6 100%);
  color:#fff;
  border:0;
  cursor:pointer;
  font-weight:700;
  border-radius:10px;
}

#popup button[type="submit"]:hover{
  background:linear-gradient(135deg, #223083 0%, #3b4cb6 100%);
}

/* Blockquotes */
blockquote{
  position:relative;
  font-style:italic;
  color:#334155;
  margin:2.5em 0 2em;
  padding:1.5em 2.5em;
  background:#f8faff;
  border-left:4px solid rgba(42,54,143,0.30);
  border-radius:12px;
  box-shadow:0 4px 18px rgba(0,0,0,0.05);
  font-family:'ConstantiaCustom', Georgia, serif;
}

blockquote::before,
blockquote::after{
  font-family:Georgia, serif;
  font-size:3.5rem;
  color:rgba(42,54,143,0.26);
  position:absolute;
  line-height:1;
  pointer-events:none;
}

blockquote::before{
  content:"\275D";
  top:12px;
  left:0;
}

blockquote::after{
  content:"\275E";
  bottom:-10px;
  right:22px;
}

/* Carousel */
.carousel-scroll{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:12px;
  padding:8px 0;
  scrollbar-width:thin;
  scrollbar-color:#aab4d9 transparent;
}

.carousel-scroll a{
  flex:0 0 auto;
  scroll-snap-align:center;
  text-decoration:none;
}

.carousel-scroll img{
  max-height:400px;
  width:auto;
  border-radius:12px;
  box-shadow:0 4px 14px rgba(0,0,0,0.18);
  transition:transform .3s ease, box-shadow .3s ease;
}

.carousel-scroll img:hover{
  transform:scale(1.03);
  box-shadow:0 8px 22px rgba(0,0,0,0.22);
}

#links-Videos{
  display:none;
}

/* jQuery UI notices */
.ui-state-error{
  background:#fbeaea !important;
  border:1px solid #e09a9a !important;
  color:#b40000 !important;
}

.ui-state-highlight{
  background:#fff9cc !important;
  border:1px solid #f2d675 !important;
  color:#8a6d00 !important;
}

.ui-corner-all{
  border-radius:6px !important;
}

.ui-icon{
  background-image:url("https://code.jquery.com/ui/1.13.2/themes/base/images/ui-icons_444444_256x240.png") !important;
}

/* =========================================================
   LANDING PAGE / INVESTOR KIT STYLES
   ========================================================= */

.lp-wrap{
  max-width:1380px;
  margin:0 auto;
  padding:20px 18px 40px;
  background:var(--lp-gray-bg);
}

.lp-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:14px;
}

.lp-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
  min-width:0;
  width:100%;
  max-width:520px;
}

.lp-brand-row{
  display:flex;
  align-items:flex-start;
  gap:8px;
  width:100%;
}

.lp-brand-logo{
  display:block;
  width:47px;
  height:33px;
  object-fit:contain;
  flex:0 0 47px;
  margin-top:4px;
}

.lp-brand-wordmark{
  font-family:'ConstantiaCustom', Georgia, serif;
  font-size:44px;
  line-height:0.98;
  letter-spacing:.35px;
  white-space:nowrap;
}

.lp-brand-wordmark-acq{
  color:#2d5f92;
}

.lp-brand-wordmark-invest{
  color:#8c8c8c;
}

.lp-brand-wordmark-llc{
  color:#8c8c8c;
  letter-spacing:1.25px;
}

.lp-brand-text{
  width:100%;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:11px;
  line-height:1.1;
  color:#8f8f8f;
  letter-spacing:.2px;
  text-transform:uppercase;
  margin-top:6px;
}

.lp-brand-text strong{
  color:#b7b7b7;
  text-decoration:underline;
  text-underline-offset:2px;
}

.lp-brand-rule{
  width:100%;
  height:2px;
  background:#d9d9d9;
  margin-top:8px;
}

.lp-call-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  padding:10px 26px;
  border-radius:999px;
  text-decoration:none;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:20px;
  font-weight:700;
  line-height:1;
  color:#fff;
  background:linear-gradient(180deg, #cf5638 0%, var(--lp-red) 55%, var(--lp-red-dark) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.24),
    0 8px 18px rgba(0,0,0,.14);
  border:1px solid rgba(0,0,0,.08);
  white-space:nowrap;
  flex:0 0 auto;
}

.lp-call-btn:hover{
  filter:brightness(1.03);
  transform:translateY(-1px);
}

.lp-call-btn .lp-call-icon{
  font-size:18px;
  line-height:1;
  color:#fff;
}

.lp-call-btn .lp-call-label{
  color:#fff;
}

.lp-call-btn .lp-call-number{
  color:#ffd45e;
}

.lp-rollover-bar{
  width:100%;
  margin:0 auto 18px;
  padding:9px 18px 10px;
  background:linear-gradient(180deg, #1f67a1 0%, #1d5f95 100%);
  color:#fff;
  text-align:center;
  font-family:'ConstantiaCustom', Georgia, serif;
  font-size:25px;
  line-height:1.1;
  font-weight:700;
  letter-spacing:.1px;
  box-shadow:inset 0 -1px 0 rgba(0,0,0,.08);
  position:relative;
}

.lp-rollover-bar::after{
  content:"";
  display:block;
  width:96%;
  height:2px;
  margin:6px auto 0;
  background:linear-gradient(90deg, transparent 0%, rgba(255,255,255,.35) 15%, rgba(255,255,255,.55) 50%, rgba(255,255,255,.35) 85%, transparent 100%);
}

.lp-hero{
  display:grid;
  grid-template-columns:minmax(0, 1.55fr) minmax(360px, 392px);
  gap:30px;
  align-items:start;
}

.lp-left{
  padding:6px 0 0 28px;
}

.lp-headline{
  margin:4px 0 18px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-weight:700;
  line-height:0.98;
  letter-spacing:0;
  text-transform:uppercase;
  color:var(--lp-blue);
  font-size:48px;
}

.lp-headline span{
  display:block;
  margin-bottom:6px;
  text-shadow:0 3px 0 rgba(0,0,0,.10);
}

.lp-headline .gold{
  color:var(--lp-gold);
}

.lp-subhead{
  margin:0 0 14px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-weight:700;
  font-size:28px;
  line-height:1.14;
  color:#234d70;
}

.lp-bullets{
  list-style:none;
  margin:0 0 18px;
  padding:0;
  max-width:760px;
}

.lp-bullets li{
  position:relative;
  padding:0 0 0 30px;
  margin:0 0 10px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:17px;
  line-height:1.42;
  color:#294867;
}

.lp-bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  width:18px;
  height:18px;
  background:url('/check.png') no-repeat center center;
  background-size:contain;
}

.lp-bullets strong{
  font-weight:700;
}

.lp-trust-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin:24px 0 0;
  max-width:760px;
}

.lp-trust-list{
  list-style:none;
  margin:0;
  padding:0;
  flex:1 1 auto;
}

.lp-trust-list li{
  position:relative;
  padding:0 0 0 30px;
  margin:0 0 6px;
  font-family:'ConstantiaCustom', Georgia, serif;
  font-size:21px;
  line-height:1.22;
  letter-spacing:.6px;
  color:var(--lp-blue);
  text-transform:uppercase;
}

.lp-trust-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:5px;
  width:18px;
  height:18px;
  background:url('/check.png') no-repeat center center;
  background-size:contain;
}

.lp-ssl-badge{
  width:114px;
  height:114px;
  display:block;
  flex:0 0 114px;
  border-radius:50%;
  overflow:hidden;
  object-fit:cover;
  margin-left:auto;
}

.lp-letter{
  margin-top:28px;
  background:#ffffff;
  border:1px solid #d8d8d8;
  box-shadow:0 10px 24px rgba(0,0,0,0.07);
  max-width:760px;
}

.lp-letter-inner{
  padding:28px 32px 30px;
  color:#222;
  font-family:'ConstantiaCustom', Georgia, serif;
  font-size:20px;
  line-height:1.68;
}

.lp-letter-head-top{
  text-align:right;
  color:#7d7d7d;
  line-height:1.18;
  margin-bottom:26px;
}

.lp-letter-subject{
  font-weight:700;
  margin-bottom:22px;
}

.lp-letter-salutation{
  margin-bottom:18px;
}

.lp-letter p{
  margin:0 0 18px;
}

.lp-letter-indent{
  text-indent:2.2em;
}

.lp-letter-check-float{
  float:right;
  width:280px;
  max-width:42%;
  height:auto;
  margin:6px 0 12px 24px;
  border:1px solid #d6d6d6;
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
  background:#fff;
}

.lp-letter-chart-block{
  margin:26px auto 24px;
  text-align:center;
  clear:both;
}

.lp-letter-chart{
  display:block;
  max-width:100%;
  width:360px;
  height:auto;
  margin:0 auto;
  border:1px solid #d6d6d6;
  box-shadow:0 10px 22px rgba(0,0,0,0.08);
  background:#fff;
}

.lp-letter-chart-caption{
  margin-top:8px;
  font-size:16px;
  line-height:1.3;
  color:#5d5d5d;
  font-style:italic;
}

.lp-letter-close{
  margin-top:22px;
}

.lp-letter-signature-wrap{
  margin-top:10px;
  margin-bottom:4px;
}

.lp-letter-signature-img{
  display:block;
  width:240px;
  max-width:100%;
  height:auto;
}

.lp-letter-signoff{
  margin-bottom:20px;
}

.lp-letter-signoff a{
  color:#1f5f96;
  text-decoration:underline;
}

.lp-letter-ps{
  margin-top:12px;
  font-size:18px;
  line-height:1.6;
}

.lp-letter-pen{
  color:#1f5f96;
  margin-right:8px;
  font-size:20px;
  vertical-align:middle;
}

.lp-letter-footnote{
  margin-top:16px;
  font-size:16px;
  line-height:1.5;
  color:#444;
}

.lp-right{
  position:relative;
}

.lp-graphic{
  position:relative;
  width:100%;
  max-width:350px;
  margin:0 auto -10px;
  z-index:2;
}

.lp-graphic img{
  display:block;
  width:100%;
  height:auto;
}

.lp-form-panel{
  position:relative;
  background:#f1ecd9;
  border-radius:2px;
  padding:150px 22px 14px;
  box-shadow:none;
  border:none;
  z-index:1;
  margin-top:-88px;
  min-height:610px;
}

.lp-form-title{
  margin:0 0 2px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:22px;
  line-height:1.1;
  color:var(--lp-blue);
  font-weight:700;
  text-align:center;
}

.lp-form-deadline{
  margin:0 0 14px;
  text-align:center;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:16px;
  line-height:1.2;
  color:#cd5a3c;
}

.lp-status{
  margin:0 0 12px;
  padding:10px 12px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:13px;
  line-height:1.45;
  border-radius:6px;
}

.lp-status-ok{
  border:1px solid rgba(22,163,74,0.22);
  background:#f0fdf4;
  color:#166534;
}

.lp-status-error{
  border:1px solid rgba(220,38,38,0.18);
  background:#fef2f2;
  color:#991b1b;
}

.lp-form{
  margin:0;
}

.lp-field{
  margin:0 0 9px;
}

.lp-field label{
  display:block;
  margin:0 0 4px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:11px;
  font-weight:700;
  line-height:1.1;
  color:#494949;
  letter-spacing:1.1px;
  text-transform:uppercase;
}

.lp-field input,
.lp-field select,
.lp-field textarea{
  display:block;
  width:100%;
  height:34px;
  padding:7px 10px;
  border:1px solid #8b8b8b;
  border-radius:2px;
  background:#fff;
  color:#111;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:15px;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.08);
}

.lp-field textarea{
  min-height:90px;
  resize:vertical;
  height:auto;
}

.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus{
  outline:none;
  border-color:#5d8bb7;
  box-shadow:0 0 0 3px rgba(42,54,143,.10), inset 0 1px 2px rgba(0,0,0,.06);
}

.lp-form-note{
  margin:10px 0 8px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:10px;
  line-height:1.35;
  color:#555;
}

.lp-form-note a{
  color:var(--lp-blue);
  text-decoration:underline;
}

.lp-checkbox{
  display:flex;
  align-items:flex-start;
  gap:7px;
  margin:8px 0 10px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:10px;
  line-height:1.35;
  color:#4d4d4d;
}

.lp-checkbox input{
  margin-top:2px;
  flex:0 0 auto;
}

.lp-submit{
  display:block;
  width:100%;
  border:none;
  border-radius:6px;
  cursor:pointer;
  padding:12px 18px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:18px;
  font-weight:700;
  line-height:1;
  color:#fff;
  background:linear-gradient(180deg, #cf5638 0%, var(--lp-red) 55%, var(--lp-red-dark) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 7px 16px rgba(0,0,0,.12);
  text-transform:uppercase;
  letter-spacing:.4px;
}

.lp-submit:hover{
  filter:brightness(1.03);
}

.lp-divider{
  height:1px;
  background:var(--lp-gray-line);
  margin:12px 0;
}

.lp-disclaimer{
  margin:10px 0 0;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:10px;
  line-height:1.35;
  color:#5d5d5d;
}

.lp-disclaimer.small{
  font-size:10px;
}

.lp-fineprint{
  margin-top:8px;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:10px;
  line-height:1.35;
  color:#5f5f5f;
}

.lp-fineprint a{
  color:var(--lp-blue);
  text-decoration:underline;
}

/* Responsive */
@media (max-width:1280px){
  .lp-headline{ font-size:50px; }
  .lp-rollover-bar{ font-size:22px; }
  .lp-subhead{ font-size:25px; }
  .lp-bullets li{ font-size:16px; }
  .lp-trust-list li{ font-size:20px; }
  .lp-left{ padding-left:12px; }
  .lp-brand-wordmark{ font-size:40px; }
  .lp-letter-inner{ font-size:18px; }
}

@media (max-width:1100px){
  .lp-hero{ grid-template-columns:1fr; gap:24px; }
  .lp-left{ padding:0; }
  .lp-right{ max-width:420px; width:100%; margin:0 auto; }
  .lp-form-panel{ margin-top:-74px; min-height:auto; }
  .lp-trust-row{ align-items:center; }
}

@media (max-width:768px){
  header{ padding:10px 14px; }
  .header-left{ gap:10px; min-width:0; }
  .logo{ font-size:1rem; padding:8px 10px; max-width:calc(100vw - 120px); overflow:hidden; text-overflow:ellipsis; }
  .menu-toggle{ display:block; }
  .menu-button{ display:none; }
  .dropdown{
    position:fixed; top:60px; left:0; right:0; width:100%;
    border-radius:0 0 18px 18px;
    box-shadow:0 18px 38px rgba(15, 23, 42, 0.18);
    padding:12px; background:var(--white);
    max-height:calc(100vh - 72px); overflow-y:auto;
    border-left:0; border-right:0;
  }
  .dropdown a{ font-size:1rem; }
  main{ padding-top:68px; }
  .lp-wrap{ padding:18px 14px 30px; }
  .lp-top{ flex-direction:column; align-items:flex-start; gap:14px; margin-bottom:14px; }
  .lp-brand{ max-width:100%; }
  .lp-brand-wordmark{ font-size:32px; }
  .lp-brand-text{ font-size:10px; }
  .lp-call-btn{ font-size:18px; min-height:46px; padding:10px 18px; align-self:center; margin:0 auto; }
  .lp-rollover-bar{ font-size:18px; padding:9px 12px 10px; }
  .lp-headline{ font-size:38px; line-height:1.02; margin-bottom:16px; }
  .lp-headline span{ margin-bottom:5px; }
  .lp-subhead{ font-size:22px; margin-bottom:12px; }
  .lp-bullets li{ font-size:16px; padding-left:28px; }
  .lp-bullets li::before{ width:16px; height:16px; }
  .lp-trust-row{ flex-direction:row; align-items:center; flex-wrap:wrap; gap:14px; }
  .lp-trust-list li{ font-size:18px; padding-left:28px; letter-spacing:.3px; }
  .lp-trust-list li::before{ width:16px; height:16px; }
  .lp-ssl-badge{ width:98px; height:98px; flex:0 0 98px; margin-left:auto; }
  .lp-form-panel{ padding:134px 18px 16px; margin-top:-68px; }
  .lp-form-title{ font-size:20px; }
  .lp-form-deadline{ font-size:15px; }
  .lp-field input, .lp-field select, .lp-field textarea{ font-size:15px; }
  .lp-letter-head-top{ font-size:12px; line-height:1.18; text-align:right; width:fit-content; max-width:220px; margin-left:auto; margin-bottom:18px; color:#7d7d7d; }
  .lp-letter-subject{ font-size:15px; line-height:1.45; margin-bottom:16px; }
  .lp-letter-salutation{ margin-bottom:14px; }
  .lp-letter-check-float{ float:none; display:block; width:100%; max-width:280px; margin:8px auto 16px; }
  .lp-letter-chart{ width:100%; max-width:320px; }
  .lp-letter-signature-img{ width:200px; }
}

.faq-section{ margin:40px auto; padding:0 18px 60px; font-family:Georgia,serif; max-width:1380px; }
.faq-header{ text-align:center; margin-bottom:40px; }
.faq-header .eyebrow{ display:block; font-size:12px; letter-spacing:.2em; text-transform:uppercase; color:#b8922a; margin-bottom:12px; }
.faq-header h2{ font-size:2.8rem; color:var(--lp-blue); line-height:1.1; margin-bottom:14px; }
.faq-header h2 em{ color:#b8922a; font-style:italic; }
.faq-header p{ color:#5a5a5a; font-style:italic; font-size:1.1rem; max-width:800px; margin:0 auto; }
.faq-divider{ width:60px; height:3px; background:#b8922a; border:none; margin:20px auto 0; }
.faq-list{ width:100%; }
.faq-item{ border-top:1px solid #d0c9bc; }
.faq-item:last-child{ border-bottom:1px solid #d0c9bc; }
.faq-question{ display:flex; align-items:flex-start; justify-content:space-between; gap:16px; padding:24px 10px; cursor:pointer; }
.faq-question:hover{ background:#f0ebe0; }
.faq-question-text{ font-family:'ConstantiaCustom',Georgia,serif; font-style:italic; font-size:1.2rem; font-weight:600; color:var(--lp-blue); line-height:1.4; }
.faq-icon{ flex-shrink:0; width:28px; height:28px; border:2px solid #b8922a; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#b8922a; font-size:20px; font-style:normal; transition:transform .3s, background .2s; margin-top:2px; }
.faq-item.faq-open .faq-icon{ transform:rotate(45deg); background:#b8922a; color:#fff; }
.faq-answer{ display:none; padding:0 10px 30px; color:#2a2a2a; font-size:1.1rem; line-height:1.75; }
.faq-answer p{ margin-bottom:16px; }
.faq-answer strong{ color:var(--lp-blue); }
.faq-pull{ border-left:4px solid #b8922a; padding:8px 0 8px 24px; margin:20px 0; font-style:italic; color:#5a5a5a; font-size:1.15rem; }
.faq-cta{ margin-top:60px; background:#1e639b; color:#fff; text-align:center; padding:50px 30px; border-radius:2px; }
.faq-cta h3{ font-family:'ConstantiaCustom',Georgia,serif; font-size:1.8rem; margin-bottom:12px; color:#fff; }
.faq-cta p{ color:rgba(255,255,255,.9); font-size:1rem; margin-bottom:24px; }
.faq-cta a{ display:inline-block; background:#b8922a; color:#fff; text-decoration:none; padding:14px 36px; border-radius:2px; font-size:1rem; font-weight:700; letter-spacing:.05em; transition:background .2s; }
.faq-cta a:hover{ background:#d4aa4a; }
@media (max-width:768px){
  .faq-header h2{ font-size:2rem; }
  .faq-question-text{ font-size:1.05rem; }
}

.lp-letter{
  background:url('/paper.png') top center / 100% 100% no-repeat !important;
  border:none !important;
  box-shadow:none !important;
}

.lp-letter-inner{
  font-size:14px;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
}

/* =========================================================
   ELFINDER FILE BROWSER MODAL
   ========================================================= */

#elfinder-modal-overlay{
  display:none; position:fixed; top:0; left:0; right:0; bottom:0;
  width:100%; height:100%;
  background:rgba(17,24,39,0.75);
  z-index:99999; align-items:center; justify-content:center;
}
#elfinder-modal-content{
  background:#fff; border-radius:12px;
  box-shadow:0 25px 50px rgba(0,0,0,0.4);
  overflow:hidden; display:flex; flex-direction:column;
  width:95vw; max-width:1000px; max-height:90vh;
}
#elfinder-modal-header{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px; border-bottom:1px solid #e5e7eb;
  background:#6366f1; color:#fff;
}
#elfinder-modal-header h3{ font-size:1.25rem; font-weight:600; margin:0; color:#fff; }
#elfinder-modal-close{
  background:none; border:none; color:#fff; cursor:pointer;
  padding:4px; border-radius:50%; line-height:1; font-size:24px;
}
#elfinder-modal-close:hover{ background:rgba(255,255,255,0.2); }
#elfinder-container{ flex-grow:1; height:620px; overflow:hidden; padding:0; }
#elfinder-iframe{ display:block; width:100%; height:600px; border:none; }

.ql-formats .ai-filebrowser{
  transform:translateY(-5px); vertical-align:top;
  background:none; border:none; cursor:pointer;
  padding:0 5px; font-size:16px; line-height:1;
}

/* ===========================================================
   CV SITE STYLES — trentontompkins
   Dark theme · red gradient header · rounded section cards
   =========================================================== */

:root{
  --cv-bg:        #0d0d0d;
  --cv-surface:   #181818;
  --cv-surface2:  #212121;
  --cv-border:    #2e2e2e;
  --cv-red-dark:  #66001d;
  --cv-red-mid:   #991a2e;
  --cv-red-vivid: #ff0000;
  --cv-white:     #f0f0f0;
  --cv-grey:      #aaaaaa;
  --cv-grey-dim:  #555555;
  --cv-radius:    14px;
}

body{ background:var(--cv-bg); color:var(--cv-white); }

header{
  background:linear-gradient(180deg,
    var(--cv-red-vivid) 0%,
    var(--cv-red-mid)   50%,
    var(--cv-red-dark)  100%) !important;
  box-shadow:0 3px 28px rgba(255,0,0,0.22) !important;
}

header .logo{
  font-family:'ConstantiaCustom',Georgia,serif !important;
  font-weight:900 !important; font-size:1.1rem !important;
  color:#f0f0f0 !important; letter-spacing:0.04em !important;
}
header .logo:hover{ color:#fff !important; opacity:0.85; }

main{ background:var(--cv-bg); padding-top:var(--header-height); }

footer{
  background:var(--cv-surface) !important;
  border-top:1px solid var(--cv-border) !important;
  color:var(--cv-grey-dim) !important;
  font-family:'HelveticaNeueCustom',Arial,sans-serif !important;
  font-size:0.75rem !important; letter-spacing:0.06em !important;
}
footer a{ color:var(--cv-grey-dim) !important; text-decoration:none; }
footer a:hover{ color:var(--cv-white) !important; }

.cv-hero{
  display:grid; grid-template-columns:1fr 230px;
  gap:3rem; align-items:center;
  max-width:960px; margin:0 auto; padding:4rem 2.5rem 2.5rem;
}
.cv-hero-text h1{
  font-family:'ConstantiaCustom',Georgia,serif;
  font-size:clamp(2.2rem,5vw,3.5rem); font-weight:900;
  line-height:1.1; margin-bottom:0.5rem; color:var(--cv-white);
}
.cv-hero-text h1 em{ font-style:normal; color:var(--cv-red-vivid); }
.cv-label{
  display:block; font-family:'HelveticaNeueCustom',Arial,sans-serif;
  font-size:0.75rem; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--cv-grey-dim); margin-bottom:1.2rem;
}
.cv-hero-text p{ color:var(--cv-grey); font-size:0.97rem; max-width:500px; }
.cv-hero-photo{
  width:200px; height:200px; border-radius:50%; overflow:hidden;
  border:3px solid var(--cv-red-dark);
  box-shadow:0 0 50px rgba(255,0,0,0.12); margin-left:auto;
}
.cv-hero-photo img{ width:100%; height:100%; object-fit:cover; object-position:top center; }

.cv-card{
  background:var(--cv-surface); border:1px solid var(--cv-border);
  border-radius:var(--cv-radius); padding:2rem 2.4rem;
  position:relative; overflow:hidden;
  max-width:960px; margin:0 auto 2rem;
}
.cv-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--cv-red-dark),var(--cv-red-vivid));
}
.cv-card-header{ display:flex; align-items:baseline; gap:0.8rem; margin-bottom:1.4rem; }
.cv-card-header h2{ font-family:'ConstantiaCustom',Georgia,serif; font-size:1.45rem; font-weight:700; color:var(--cv-white); margin:0; }
.cv-tag{ font-family:'HelveticaNeueCustom',Arial,sans-serif; font-size:0.65rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--cv-grey-dim); }
.cv-intro{ color:var(--cv-grey); font-size:0.92rem; margin-bottom:1.5rem; max-width:620px; }

.cv-cols{ display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; }
.cv-block h3{
  font-family:'HelveticaNeueCustom',Arial,sans-serif; font-size:0.68rem;
  letter-spacing:0.16em; text-transform:uppercase; color:var(--cv-grey);
  padding-bottom:0.5rem; border-bottom:1px solid var(--cv-border); margin-bottom:1.1rem;
}
.cv-subhead{
  font-family:'HelveticaNeueCustom',Arial,sans-serif; font-size:0.68rem;
  letter-spacing:0.16em; text-transform:uppercase; color:var(--cv-grey);
  padding-bottom:0.5rem; border-bottom:1px solid var(--cv-border);
  margin-top:1.8rem; margin-bottom:1.1rem;
}
.cv-entry{ margin-bottom:1.5rem; }
.cv-role{ font-weight:700; color:var(--cv-white); font-size:0.94rem; }
.cv-org{ font-family:'HelveticaNeueCustom',Arial,sans-serif; font-size:0.73rem; color:#b0b0b0; margin-bottom:0.1rem; }
.cv-dates{ font-family:'HelveticaNeueCustom',Arial,sans-serif; font-size:0.72rem; color:var(--cv-grey-dim); margin-bottom:0.45rem; }
.cv-entry p, .cv-entry li{ font-size:0.87rem; color:var(--cv-grey); line-height:1.65; }
.cv-entry ul{ padding-left:1.1rem; margin-top:0.3rem; }
.cv-entry li{ margin-bottom:0.3rem; }

.cv-skill-wrap{ display:flex; flex-wrap:wrap; gap:0.55rem; }
.cv-skill-tag{
  background:var(--cv-surface2); border:1px solid var(--cv-border);
  border-radius:6px; padding:5px 13px;
  font-family:'HelveticaNeueCustom',Arial,sans-serif; font-size:0.74rem;
  color:var(--cv-grey); letter-spacing:0.03em; cursor:default;
  transition:border-color 0.15s, color 0.15s;
}
.cv-skill-tag:hover{ border-color:var(--cv-red-vivid); color:var(--cv-white); }

.cv-project-grid{ display:flex; flex-direction:column; gap:1rem; }
.cv-project-card{
  background:var(--cv-surface2); border:1px solid var(--cv-border);
  border-radius:10px; padding:1.2rem 1.5rem; transition:border-color 0.18s;
}
.cv-project-card:hover{ border-color:var(--cv-red-mid); }
.cv-project-card h4{ font-size:0.97rem; font-weight:700; color:var(--cv-white); margin-bottom:0.3rem; }
.cv-project-card p{ font-size:0.86rem; color:var(--cv-grey); }
.cv-tech{ margin-top:0.5rem; display:flex; flex-wrap:wrap; gap:0.4rem; }
.cv-tech span{
  font-family:'HelveticaNeueCustom',Arial,sans-serif; font-size:0.65rem;
  background:var(--cv-surface); border:1px solid var(--cv-border);
  border-radius:4px; padding:2px 8px; color:var(--cv-grey-dim); letter-spacing:0.05em;
}

.cv-cms-section{ margin-top:2rem; padding-top:1.5rem; border-top:1px solid var(--cv-border); }
.cv-cms-section h2{ font-family:'ConstantiaCustom',Georgia,serif; font-size:1.2rem; font-weight:700; color:var(--cv-white); margin-bottom:0.8rem; }

.cv-contact-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:1rem; }
.cv-contact-item{
  background:var(--cv-surface2); border:1px solid var(--cv-border);
  border-radius:10px; padding:1rem 1.3rem; display:flex; flex-direction:column; gap:0.2rem;
}
.cv-c-label{ font-family:'HelveticaNeueCustom',Arial,sans-serif; font-size:0.65rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--cv-grey-dim); }
.cv-c-value{ font-size:0.9rem; color:var(--cv-white); word-break:break-all; text-decoration:none; }
.cv-c-value:hover{ color:var(--cv-red-vivid); }

@media (max-width:760px){
  .cv-hero{ grid-template-columns:1fr; text-align:center; padding:3rem 1.5rem 2rem; }
  .cv-hero-photo{ margin:0 auto; width:160px; height:160px; order:-1; }
  .cv-hero-text p{ margin:0 auto; }
  .cv-cols{ grid-template-columns:1fr; }
  .cv-card{ padding:1.4rem 1.2rem; margin:0 0.5rem 1.5rem; }
}

.cv-slug-page{ margin-top:2rem; }
.cv-page-section h2{ font-family:'ConstantiaCustom',Georgia,serif; font-size:clamp(1.4rem,3vw,2rem); color:var(--cv-white); margin-bottom:1rem; }
.cv-page-section h3{ font-family:'ConstantiaCustom',Georgia,serif; font-size:1.15rem; color:var(--cv-white); margin:1.8rem 0 0.6rem; padding-bottom:0.4rem; border-bottom:1px solid var(--cv-border); }
.cv-page-section p{ color:var(--cv-grey); font-size:0.92rem; line-height:1.75; margin-bottom:0.9rem; }
.cv-page-section ul li{ color:var(--cv-grey); font-size:0.9rem; line-height:1.75; }
.cv-page-section blockquote{ color:var(--cv-grey); font-size:0.95rem; line-height:1.7; }
.cv-page-section a{ color:var(--cv-white); }
.cv-page-section a:hover{ color:var(--cv-red-vivid); }
.cv-page-section table td,
.cv-page-section table th{ color:var(--cv-white); }

/* ===========================================================
   INLINE NAV — expanded on desktop, hamburger on mobile
   header.ai-nav         = acquisitioninvest.com (white links)
   header.ai-nav.tt-nav  = trentontompkins.com   (white links, red hover)
   =========================================================== */

/* -- Shared structural rules (desktop) -------------------- */
header.ai-nav .menu-button { display: none !important; }
header.ai-nav .menu-toggle { display: none !important; }
header.ai-nav nav           { position: static; }

header.ai-nav .dropdown {
  display:        flex !important;
  flex-direction: row !important;
  flex-wrap:      wrap;
  align-items:    center;
  gap:            2px;
  position:       static !important;
  background:     transparent !important;
  border:         none !important;
  box-shadow:     none !important;
  width:          auto !important;
  margin:         0 !important;
  padding:        0 !important;
  border-radius:  0 !important;
  overflow:       visible !important;
}

header.ai-nav .dropdown a {
  padding:        6px 11px !important;
  border-radius:  6px !important;
  font-weight:    700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  width:          auto !important;
  white-space:    nowrap;
  transform:      none !important;
  transition:     background .18s ease, color .18s ease !important;
}

/* -- acquisitioninvest: white links ----------------------- */
header.ai-nav:not(.tt-nav) .dropdown a {
  font-size: 0.72rem !important;
  color:     rgba(255,255,255,0.85) !important;
}
header.ai-nav:not(.tt-nav) .dropdown a:hover,
header.ai-nav:not(.tt-nav) .dropdown a:focus {
  background: rgba(255,255,255,0.14) !important;
  color:      #fff !important;
  transform:  none !important;
}

/* -- trentontompkins: white links, red hover -------------- */
header.ai-nav.tt-nav .dropdown a {
  font-size: 0.85rem !important;
  color:     #ffffff !important;
}
header.ai-nav.tt-nav .dropdown a:hover,
header.ai-nav.tt-nav .dropdown a:focus {
  background: rgba(255,0,0,0.18) !important;
  color:      #ff5555 !important;
  transform:  none !important;
}

/* -- Mobile: hamburger for both sites --------------------- */
@media (max-width: 768px) {
  header.ai-nav .menu-toggle { display: block !important; }
  header.ai-nav .menu-button { display: none !important; }

  header.ai-nav .dropdown {
    display:        none !important;
    position:       fixed !important;
    top:            60px !important;
    left:           0 !important;
    right:          0 !important;
    width:          100% !important;
    flex-direction: column !important;
    border-radius:  0 0 16px 16px !important;
    box-shadow:     0 12px 32px rgba(0,0,0,0.35) !important;
    padding:        10px !important;
    z-index:        1100 !important;
    max-height:     calc(100vh - 60px) !important;
    overflow-y:     auto !important;
    border:         none !important;
  }

  header.ai-nav .dropdown.show,
  header.ai-nav .dropdown.mobile-full {
    display: flex !important;
  }

  /* acquisitioninvest mobile */
  header.ai-nav:not(.tt-nav) .dropdown {
    background: var(--brand-dark) !important;
  }
  header.ai-nav:not(.tt-nav) .dropdown a {
    padding: 11px 14px !important; font-size: 0.88rem !important;
    border-radius: 8px !important; width: 100% !important;
    text-transform: none !important; letter-spacing: normal !important;
    color: rgba(255,255,255,0.9) !important;
  }
  header.ai-nav:not(.tt-nav) .dropdown a:hover {
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
  }

  /* trentontompkins mobile */
  header.ai-nav.tt-nav .dropdown {
    background: #1a0000 !important;
  }
  header.ai-nav.tt-nav .dropdown a {
    padding: 11px 14px !important; font-size: 0.88rem !important;
    border-radius: 8px !important; width: 100% !important;
    text-transform: none !important; letter-spacing: normal !important;
    color: rgba(255,255,255,0.9) !important;
  }
  header.ai-nav.tt-nav .dropdown a:hover {
    background: rgba(255,0,0,0.20) !important;
    color: #ff5555 !important;
  }
}
