@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:1500px;
  --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(180deg, #2d74ad 0%, #20649d 44%, #15527e 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;
  flex:1 1 auto;
}

.logo{
  font-family:'ConstantiaCustom', Georgia, serif;
  font-weight:700;
  font-size:1.2rem;
  color:ghostwhite;
  text-decoration:none;
  letter-spacing:.2px;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 4px;
  border-radius:0;
  background:none;
  box-shadow:none;
  transition:opacity .2s ease;
  min-width:0;
  flex:0 1 auto;
  overflow:visible;
}

.logo:hover{
  opacity:0.85;
  background:none;
  box-shadow:none;
  transform:none;
}

nav{
  position:relative;
}

.menu-button{
  appearance:none;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  color:ghostwhite;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-weight:700;
  font-size:1.08rem;
  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;
  font-size:1.03rem;
  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:ghostwhite;
  cursor:pointer;
  padding:10px;
  border-radius:12px;
  line-height:1;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
  flex:0 0 auto;
}

.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 20px 0;
  margin-top:40px;
  border-top:3px solid var(--brand);
  color:#334155;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  overflow:hidden;
}

.site-footer-content{
  max-width:1200px;
  margin:0 auto;
  padding-bottom:18px;
}

.site-footer-band{
  position:relative;
  width:100vw;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  margin-top:18px;
  background:#eceef2;
  overflow:hidden;
}

.site-footer-band::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:22px;
  height:12px;
  background:linear-gradient(180deg, #2d74ad 0%, #20649d 44%, #15527e 100%);
  z-index:0;
}

.site-footer-band::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:34px;
  height:22px;
  background:linear-gradient(180deg, rgba(31,95,150,0.24) 0%, rgba(31,95,150,0.08) 45%, rgba(31,95,150,0) 100%);
  z-index:0;
  pointer-events:none;
}

.site-footer-band img{
  position:relative;
  z-index:2;
  display:block;
  width:min(100%, 2048px);
  max-width:2048px;
  height:auto;
  margin:0 auto;
}

/* 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.72fr) minmax(390px, 460px);
  gap:34px;
  align-items:start;
}

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

.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:none;
}

.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:20px;
  height:20px;
  background:url('/checkmark-bullet.png?v=20260424final222') no-repeat center center;
  background-size:20px 20px;
}

.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:none;
}

.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:20px;
  height:20px;
  background:url('/checkmark-bullet.png?v=20260424final222') no-repeat center center;
  background-size:20px 20px;
}

.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:900px;
}

.lp-letter-inner{
  padding:30px 40px 32px;
  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-info-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  max-width:760px;
  margin:24px 0 0;
}

.lp-info-box,
.lp-chart-callout,
.lp-side-box{
  margin:20px 0 0;
  padding:14px 18px;
  border:2px solid #b8922a;
  background:#fffdf5;
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
  font-size:11.5px;
  line-height:1.6;
  color:#4a3a00;
  box-shadow:0 14px 32px rgba(20,28,80,.14);
}

.lp-info-box{
  margin-top:0;
}

.lp-info-box-title,
.lp-chart-callout-title{
  display:block;
  margin:0 0 6px;
  color:#1a2540;
  font-size:22px;
  line-height:1.16;
  font-weight:700;
  font-family:'ConstantiaCustom', Georgia, serif;
}

.lp-side-box .lp-info-box-title{
  text-align:center;
  font-size:24px;
}

.lp-info-box p,
.lp-chart-callout p,
.lp-side-box p{
  margin:0 0 10px;
}

.lp-info-list{
  margin:8px 0 0;
  padding-left:20px;
}

.lp-info-list li{
  margin:0 0 8px;
}

.lp-info-list-tight li{
  margin-bottom:6px;
}

.lp-protections-box{
  max-width:760px;
}

.lp-chart-callout{
  width:380px;
  max-width:100%;
  text-align:center;
}

.lp-letter-chart-block{
  margin:16px 0 18px 24px;
  clear:none;
}

.lp-letter-chart{
  width:100%;
  margin:0 auto 12px;
}

.lp-chart-callout-subtitle,
.lp-side-box-subtitle{
  margin:0 0 10px;
  font-size:12px;
  color:#5b4b11;
  text-align:center;
}

.lp-chart-callout-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
  font-size:11px;
  color:#4a3a00;
}

.lp-chart-callout-grid div{
  padding:8px 6px;
  border:1px solid rgba(184,146,42,.32);
  background:rgba(255,255,255,.7);
}

.lp-chart-callout-grid strong{
  display:block;
  margin-bottom:4px;
  color:#1a2540;
}

.lp-side-box{
  margin:18px 0 0;
}

.lp-side-box-compare{
  position:relative;
  z-index:3;
}

.lp-compare-table{
  display:grid;
  gap:6px;
}

.lp-compare-row{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:8px;
  padding:8px 10px;
  border:1px solid rgba(184,146,42,.30);
  background:rgba(255,255,255,.72);
  color:#1a2540;
  font-weight:600;
  text-align:center;
}

.lp-compare-head{
  background:#f4ead0;
  color:#5b4b11;
  font-size:11px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.lp-side-box-note{
  margin:10px 0 0;
  font-size:11px;
  color:#5b4b11;
  text-align:center;
}

.lp-chart-stack{
  display:grid;
  gap:18px;
  max-width:900px;
  margin:22px 0 0;
}

.lp-chart-box{
  margin:0;
}

.lp-chart-box-image-wrap{
  border:1px solid rgba(184,146,42,.28);
  background:rgba(255,255,255,.82);
  padding:10px;
  box-shadow:0 12px 24px rgba(20,28,80,.12);
}

.lp-chart-box-image{
  display:block;
  width:100%;
  height:auto;
  margin:0 auto;
}

.lp-chart-box-caption{
  margin:12px 0 0;
  font-size:12px;
  color:#4a3a00;
}

.lp-chart-box-caption p{
  margin:0 0 10px;
}

.lp-chart-box-caption p:last-child{
  margin-bottom:0;
}

.lp-chart-box-small .lp-chart-box-image{
  max-width:520px;
}

.lp-right-box-stack{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin:20px 0 0;
  width:100%;
}

.lp-right-box-stack .lp-info-box{
  margin:0;
}

.lp-right{
  position:relative;
  width:100%;
  max-width:460px;
  justify-self:end;
}

.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-chart-callout-grid{
    grid-template-columns:1fr;
  }

  .lp-letter-inner{
    font-size:18px;
  }
}

@media (max-width:1100px){
  .lp-hero{
    grid-template-columns:1fr;
    gap:24px;
  }

  .lp-left{
    padding:0;
  }

  .lp-info-grid{
    grid-template-columns:1fr;
  }

  .lp-right{
    max-width:420px;
    width:100%;
    margin:0 auto;
  }

  .lp-form-panel{
    margin-top:-74px;
    min-height:auto;
  }

  .lp-letter-chart-block{
    float:none !important;
    margin:18px 0;
  }

  .lp-trust-row{
    align-items:center;
  }

  .lp-chart-callout{
    width:100%;
  }

  .lp-chart-box-small .lp-chart-box-image{
    max-width:100%;
  }
}

@media (max-width:768px){
  header{
    padding:10px 12px;
  }

  .header-left{
    gap:10px;
    min-width:0;
    flex:1 1 auto;
  }

  .logo{
    font-size:1rem;
    padding:6px 4px;
    max-width:none;
    min-width:0;
    flex:1 1 auto;
    overflow:visible;
    gap:8px;
  }

  .menu-toggle{
    display:block;
  }

  .menu-button{
    display:none;
  }

  .dropdown{
    position:fixed;
    top:64px;
    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-right-box-stack{
    gap:16px;
  }

  .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 0.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: #ffffff !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;
}

/* Quill toolbar file browser button */
.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;
}

/* =========================================================
   AI SITE NAV  inline expanded on desktop, hamburger on mobile
   ========================================================= */

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:        8px 14px !important;
  border-radius:  8px !important;
  font-size:      1.12rem !important;
  font-weight:    700 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
  color:          ghostwhite !important;
  width:          auto !important;
  white-space:    nowrap;
  transform:      none !important;
  transition:     background .18s ease, color .18s ease !important;
}

header.ai-nav .dropdown a:hover,
header.ai-nav .dropdown a:focus {
  background: rgba(255,255,255,0.14) !important;
  color:      #fff !important;
  transform:  none !important;
}

/* Nav logo image */
.nav-logo-img {
  display:block;
  height:32px;
  width:auto;
  max-width:none;
  flex:0 0 auto;
  margin:0;
}

@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:64px !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    flex-direction:column !important;
    background:var(--brand-dark) !important;
    border-radius:0 0 16px 16px !important;
    box-shadow:0 12px 32px rgba(0,0,0,0.3) !important;
    padding:10px !important;
    z-index:1100 !important;
    max-height:calc(100vh - 64px) !important;
    overflow-y:auto !important;
    border:none !important;
  }

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

  header.ai-nav .dropdown a {
    padding:12px 15px !important;
    font-size:1rem !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 .dropdown a:hover {
    background:rgba(255,255,255,0.12) !important;
    color:#fff !important;
  }

  .nav-logo-img {
    height:28px;
  }
}

/* Footer disclosure and symbol fallback */
#footer-disclaimer{
  font-family:'HelveticaNeueCustom', Arial, Helvetica, sans-serif;
}
.ai-footer-dagger,
.lp-letter-footnote,
.lp-letter-salutation{
  font-family: Georgia, 'Times New Roman', 'ConstantiaCustom', serif;
}

/* --- Local SEO service-area pages --- */
.svc-landing{
  width:100%;
  padding:30px 0 70px;
}
.svc-shell{
  max-width:1320px;
  margin:0 auto;
}
.svc-breadcrumbs{
  margin:0 0 16px;
  font-family:'HelveticaNeueCustom',Arial,Helvetica,sans-serif;
  font-size:.88rem;
  letter-spacing:.02em;
  color:#667085;
}
.svc-hero{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);
  gap:28px;
  align-items:center;
}
.svc-hero-copy h1{
  margin:0 0 10px;
  color:var(--lp-blue);
  font-family:'ConstantiaCustom', Georgia, serif;
  font-size:clamp(2rem,4vw,3.1rem);
  line-height:1.08;
}
.svc-hero-copy h2{
  margin:0 0 14px;
  color:#b8922a;
  font-family:'ConstantiaCustom', Georgia, serif;
  font-size:clamp(1.15rem,2vw,1.5rem);
  font-style:italic;
  line-height:1.35;
}
.svc-lead{
  font-size:1.04rem;
  line-height:1.82;
}
.svc-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:26px;
  margin-top:28px;
  align-items:start;
}
.svc-box{margin:0 0 22px;}
.svc-bullets{margin:0; padding-left:22px; line-height:1.9;}
.svc-next-links{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px;}
.svc-next-links a{
  display:inline-flex; align-items:center; justify-content:center; text-decoration:none; font-weight:700;
  padding:12px 20px; border-radius:2px; background:var(--lp-blue); color:#fff;
}
.svc-next-links a:last-child{background:#b8922a; color:#fff;}
.svc-form-box .lp-form{margin-top:12px;}
.svc-form-box .lp-field label{display:block; font-weight:700; margin-bottom:6px;}
.svc-submit{
  width:100%; padding:15px; background:gold; font-weight:bold; border:none; cursor:pointer; margin-top:12px;
}
.svc-meta p{margin:0 0 10px;}
.svc-hero-media img{display:block; width:100%; height:auto; border-radius:3px; box-shadow:0 14px 36px rgba(20,28,80,.18);}
.svc-nearby-links{font-family:'HelveticaNeueCustom',Arial,Helvetica,sans-serif; font-size:.96rem; line-height:1.95;}
.svc-nearby-links a{color:var(--lp-blue); text-decoration:none; white-space:nowrap;}
.svc-nearby-links a:hover{color:#b8922a;}
.svc-nearby-links .dot{display:inline-block; margin:0 8px; color:#b8922a;}
.svc-kicker{display:inline-block; margin:0 0 12px; font-family:"HelveticaNeueCustom",Arial,Helvetica,sans-serif; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color:#b8922a;}
.svc-chart-callout{box-shadow:0 16px 34px rgba(20,28,80,.08);}
.svc-inline-chart-wrap{display:flex; justify-content:center; align-items:center; margin:6px 0 14px;}
.svc-inline-chart{max-width:min(100%,430px); height:auto; display:block;}
.svc-chart-caption p{margin:0 0 12px;}
.svc-chart-caption p:last-child{margin-bottom:0;}
.svc-faq-list{display:flex; flex-direction:column; gap:12px;}
.svc-faq-item{border:1px solid rgba(31,100,157,.14); background:#fff; border-radius:2px; overflow:hidden;}
.svc-faq-question{width:100%; border:0; background:transparent; display:flex; align-items:center; justify-content:space-between; gap:14px; padding:16px 18px; text-align:left; cursor:pointer; font-family:'ConstantiaCustom',Georgia,serif; font-size:1.03rem; color:var(--lp-blue); font-weight:700;}
.svc-faq-question:hover{background:#f7f9fc;}
.svc-faq-icon{flex:0 0 auto; width:24px; height:24px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; border:2px solid #b8922a; color:#b8922a; font-family:'HelveticaNeueCustom',Arial,Helvetica,sans-serif; font-size:18px; line-height:1; transition:transform .18s ease, background .18s ease, color .18s ease;}
.svc-faq-open .svc-faq-icon{transform:rotate(45deg); background:#b8922a; color:#fff;}
.svc-faq-answer{display:none; padding:0 18px 18px; line-height:1.8; font-size:.98rem;}
.svc-faq-answer p{margin:0 0 12px;}
.svc-faq-answer p:last-child{margin-bottom:0;}
.svc-local-proof,.svc-proof-box{position:sticky; top:84px;}
.svc-proof-box{margin-top:22px;}
@media (max-width: 980px){
  .svc-local-proof,.svc-proof-box{position:static;}
}
.areas-serve-wrap{padding:26px 0 8px; transition:opacity .22s ease, transform .22s ease, filter .22s ease;}
.areas-serve-card{max-width:1380px; margin:0 auto; padding:14px 18px; border:2px solid #b8922a; background:#fffdf5; box-shadow:0 12px 28px rgba(20,28,80,.08); overflow:hidden;}
.areas-serve-title{font-family:'ConstantiaCustom',Georgia,serif; font-size:1.25rem; color:var(--lp-blue); margin:0 0 8px;}
.areas-serve-links{font-family:'HelveticaNeueCustom',Arial,Helvetica,sans-serif; font-size:.94rem; line-height:1.9;}
.areas-serve-links a{color:var(--lp-blue); text-decoration:none; white-space:nowrap; transition:color .18s ease, opacity .18s ease;}
.areas-serve-links a:hover{color:#b8922a;}
.areas-serve-links .dot{display:inline-block; margin:0 8px; color:#b8922a;}
.areas-serve-fading{opacity:0; transform:translateY(6px); filter:blur(1px); pointer-events:none;}
@media (max-width: 980px){
  .svc-hero,.svc-grid{grid-template-columns:1fr;}
}


/* Maps, service pages, and location CMS */
.ai-map-section{margin:0 0 20px 0;}
.ai-map-box{padding:18px;}
.ai-map-grid{display:grid;grid-template-columns:minmax(0,2fr) minmax(260px,1fr);gap:18px;align-items:stretch;}
.ai-map-canvas{min-height:320px;border-radius:14px;overflow:hidden;background:#eef2f7;border:1px solid rgba(31,39,95,.12);}
.ai-map-embed-frame{width:100%;height:100%;min-height:320px;border:0;}
.ai-map-side{display:flex;flex-direction:column;gap:10px;}
.ai-map-label{font-weight:700;color:#1f275f;}
.ai-map-input{width:100%;padding:12px 14px;border:1px solid #c8cfdd;border-radius:10px;font:inherit;box-sizing:border-box;}
.ai-map-button,.svc-submit{display:inline-flex;align-items:center;justify-content:center;width:100%;padding:13px 16px;border:0;border-radius:10px;background:#d8b24c;color:#1f275f;font-weight:800;cursor:pointer;text-decoration:none;}
.ai-map-button:hover,.svc-submit:hover{background:#e7c35f;}
.ai-map-address,.ai-map-contact-row{font-size:.98rem;line-height:1.55;color:#24304f;}
.svc-landing-simple .svc-shell-simple{max-width:1100px;margin:0 auto;padding:28px 18px 46px;}
.svc-intro-box,.svc-form-box,.svc-chart-box{padding:20px;}
.svc-kicker{font-size:.9rem;letter-spacing:.08em;text-transform:uppercase;color:#836a24;font-weight:800;margin-bottom:10px;}
.svc-intro-box h1{margin:0 0 8px;color:#1f275f;}
.svc-intro-box h2,.svc-section-title{margin:0 0 14px;color:#2a368f;font-size:1.2rem;}
.svc-lead{font-size:1.02rem;line-height:1.8;color:#1f2937;margin-bottom:14px;}
.svc-cms-content p{margin:0 0 14px;line-height:1.8;color:#1f2937;}
.svc-section-block{margin:0 0 18px;}
.svc-chart-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.areas-serve-card .ai-map-section{margin-bottom:16px;}
@media (max-width:900px){.ai-map-grid,.svc-chart-grid{grid-template-columns:1fr;}.ai-map-canvas,.ai-map-embed-frame{min-height:260px;}}


.svc-request-section{display:flex;justify-content:center;margin:0 0 22px;}
.svc-request-section .lp-right{max-width:460px;margin:0 auto;justify-self:center;}
.svc-request-section .lp-form-panel{min-height:auto;}
.svc-request-section .lp-right-box-stack,
.svc-request-section .lp-side-box{display:none;}


.ai-map-canvas{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.ai-map-canvas-inner{
  width:100%;
  min-height:320px;
  border-radius:12px;
  overflow:hidden;
  background:#e9eef8;
  border:1px solid rgba(42,54,143,0.12);
}

.ai-map-open-row{
  font-size:0.95rem;
}

.ai-map-open-link{
  color:var(--brand);
  font-weight:700;
  text-decoration:none;
}

.ai-map-open-link:hover,
.ai-map-open-link:focus{
  text-decoration:underline;
}

.ai-map-fallback{
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
  color:var(--brand-dark);
  background:linear-gradient(180deg, #eef3fb 0%, #e6ecf8 100%);
}


/* --- 2026-04-24 service-page layout and readable disclaimer fixes --- */
.svc-landing-simple .svc-top-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.14fr) minmax(360px, .86fr);
  gap:26px;
  align-items:start;
  margin:0 0 24px;
}

.svc-landing-simple .svc-intro-column,
.svc-landing-simple .svc-request-column{
  margin:0;
}

.svc-landing-simple .svc-request-section{
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.svc-landing-simple .ai-investor-kit-signup-service{
  width:100%;
  max-width:460px;
  margin:0 auto;
}

.svc-landing-simple .ai-investor-kit-signup-service .lp-form-panel{
  box-sizing:border-box;
  min-height:auto !important;
}

.svc-landing-simple .svc-chart-section{
  clear:both;
}

#footer-disclaimer{
  color:#243044 !important;
  background:#ffffff !important;
  border-color:#cbd5e1 !important;
  box-shadow:0 8px 22px rgba(31,39,95,0.08);
}

#footer-disclaimer strong{
  color:#1f275f !important;
}

@media (max-width:980px){
  .svc-landing-simple .svc-top-grid{
    grid-template-columns:1fr;
  }
}

@media (min-width:741px){
  .svc-landing-simple .svc-chart-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width:740px){
  .svc-landing-simple .svc-chart-grid{
    grid-template-columns:1fr !important;
  }
}



/* --- 2026-04-24 final hard footer readability pass --- */
footer,
footer div,
footer p,
footer li{
  color:#334155;
}
footer a{
  color:#1f5f96;
}
#footer-disclaimer{
  color:#1f2937 !important;
  background:#ffffff !important;
  border:2px solid #94a3b8 !important;
  box-shadow:0 10px 24px rgba(15,23,42,0.12) !important;
  opacity:1 !important;
}
#footer-disclaimer,
#footer-disclaimer p,
#footer-disclaimer span,
#footer-disclaimer a,
#footer-disclaimer li{
  color:#1f2937 !important;
}
#footer-disclaimer strong{
  color:#0f172a !important;
}

/* Language selector */
.site-language-switcher{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  margin:8px 0 6px;
  font-weight:700;
}
.site-language-switcher a.language-option{
  color:#1f275f;
  text-decoration:none;
  padding:3px 7px;
  border-radius:6px;
}
.site-language-switcher a.language-option.active{
  background:#1f275f;
  color:#fff;
}

/* --- 2026-05-03 unified admin flash states --- */
.ai-flash-wrap{
  width:100%;
  max-width:1200px;
  margin:18px auto 0;
  padding:0 20px;
}
.ai-flash{
  display:flex;
  align-items:center;
  gap:10px;
  padding:13px 16px;
  border-radius:12px;
  font-weight:800;
  box-shadow:0 8px 22px rgba(15,23,42,0.10);
}
.ai-flash-success{
  background:#ecfdf3 !important;
  border:1px solid #86efac !important;
  color:#0f7a35 !important;
}
.ai-flash-success .ai-flash-icon,
.ai-flash-success .ai-flash-message{
  color:#0f7a35 !important;
}
.ai-flash-error{
  background:#fef2f2 !important;
  border:1px solid #fecaca !important;
  color:#b91c1c !important;
}
.ai-flash-warning{
  background:#fffbeb !important;
  border:1px solid #fde68a !important;
  color:#92400e !important;
}
.ai-flash-info{
  background:#eff6ff !important;
  border:1px solid #bfdbfe !important;
  color:#1d4ed8 !important;
}
.ai-flash-icon{
  flex:0 0 auto;
  width:24px;
  height:24px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.72);
}

/* Legacy inline editor status: success must read as unmistakably green. */
#status-message.ai-status-success,
#status-message[style*="rgb(16, 185, 129)"]{
  background:#ecfdf3 !important;
  color:#0f7a35 !important;
  border:1px solid #86efac !important;
  font-weight:800 !important;
}

/* TrioDesktop CMS placeholder cleanup pass */
.nav-logo-text{font-weight:800;letter-spacing:.02em;color:#fff;white-space:nowrap}
.tdcms-placeholder{max-width:860px;margin:96px auto 72px;padding:44px 36px;text-align:center;background:#ffffff;border:1px solid #dbe3ef;border-radius:24px;box-shadow:0 18px 60px rgba(15,23,42,.12)}
.tdcms-placeholder h1{margin:0 0 14px;font-size:clamp(34px,6vw,64px);line-height:1;color:#111827}
.tdcms-placeholder p{margin:0 auto 26px;max-width:680px;font-size:19px;line-height:1.65;color:#374151}
.tdcms-placeholder-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}.tdcms-button{display:inline-flex;align-items:center;justify-content:center;padding:13px 22px;border-radius:999px;background:#111827;color:#fff;text-decoration:none;font-weight:800}.tdcms-button:hover{background:#2563eb;color:#fff}.tdcms-pill{display:inline-block;margin-bottom:18px;padding:7px 13px;border-radius:999px;background:#ecfdf5;color:#047857;font-weight:800;font-size:13px;text-transform:uppercase;letter-spacing:.08em}

/* TrioDesktop account/admin shell pass */
.tdcms-nav-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.tdcms-nav-button{display:inline-flex;align-items:center;justify-content:center;padding:9px 14px;border-radius:999px;background:#ffffff;color:#111827;text-decoration:none;font-weight:800;box-shadow:0 6px 16px rgba(15,23,42,.12)}
.tdcms-nav-button:hover{background:#e0f2fe;color:#0f172a}
.tdcms-nav-button-secondary{background:#111827;color:#fff;border:1px solid rgba(255,255,255,.28)}
.tdcms-nav-button-secondary:hover{background:#2563eb;color:#fff}
.tdcms-button-secondary{background:#2563eb}
.tdcms-button-ghost{background:#ffffff;color:#111827;border:1px solid #cbd5e1}
.tdcms-button-ghost:hover{background:#e0f2fe;color:#0f172a}
.tdcms-logout-link{font-weight:800!important;color:#fff!important;background:#b91c1c!important}
.tdcms-auth-shell,.tdcms-dashboard-shell,.tdcms-admin-shell{max-width:1120px;margin:64px auto;padding:0 22px}
.tdcms-auth-card,.tdcms-dashboard-card{background:#fff;border:1px solid #dbe3ef;border-radius:24px;box-shadow:0 18px 60px rgba(15,23,42,.12);padding:34px;max-width:620px;margin:0 auto}
.tdcms-wide-card{max-width:900px}
.tdcms-auth-card h1,.tdcms-dashboard-card h1,.tdcms-admin-head h1{margin:0 0 12px;color:#111827;line-height:1.1}
.tdcms-auth-card p,.tdcms-dashboard-card p,.tdcms-admin-head p{color:#475569;line-height:1.6}
.tdcms-form{display:grid;gap:14px;margin-top:22px}
.tdcms-form label{display:grid;gap:7px;font-weight:800;color:#111827}
.tdcms-form input,.tdcms-form textarea,.tdcms-form select{width:100%;box-sizing:border-box;border:1px solid #cbd5e1;border-radius:14px;padding:12px 14px;font:inherit;background:#fff;color:#111827}
.tdcms-form input:focus,.tdcms-form textarea:focus,.tdcms-form select:focus{outline:3px solid rgba(37,99,235,.16);border-color:#2563eb}
.tdcms-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.tdcms-auth-foot{margin-top:20px}.tdcms-auth-foot a{font-weight:800;color:#2563eb}.tdcms-inline-error{color:#b91c1c;font-weight:800}
.tdcms-admin-head{display:flex;align-items:center;justify-content:space-between;gap:18px;background:#fff;border:1px solid #dbe3ef;border-radius:24px;padding:26px 30px;box-shadow:0 18px 60px rgba(15,23,42,.10);margin-bottom:22px}
.tdcms-table-wrap{overflow:auto;background:#fff;border:1px solid #dbe3ef;border-radius:20px;box-shadow:0 18px 60px rgba(15,23,42,.10)}
.tdcms-table{width:100%;border-collapse:collapse}.tdcms-table th,.tdcms-table td{padding:13px 14px;border-bottom:1px solid #e2e8f0;text-align:left;vertical-align:top}.tdcms-table th{background:#f8fafc;color:#334155;text-transform:uppercase;font-size:12px;letter-spacing:.08em}.tdcms-table-actions{display:flex;gap:12px;flex-wrap:wrap}.tdcms-table-actions a{font-weight:800;color:#2563eb;text-decoration:none}.tdcms-table-actions a.danger{color:#b91c1c}
@media (max-width:768px){.tdcms-nav-button{display:none}.tdcms-auth-card,.tdcms-dashboard-card{padding:24px}.tdcms-form-grid{grid-template-columns:1fr}.tdcms-admin-head{align-items:flex-start;flex-direction:column}.tdcms-table th,.tdcms-table td{padding:10px 9px}}

/* Google OAuth login buttons */
.tdcms-oauth-divider{display:flex;align-items:center;gap:12px;margin:22px 0 16px;color:#64748b;font-weight:800;text-transform:uppercase;font-size:12px;letter-spacing:.12em}
.tdcms-oauth-divider:before,.tdcms-oauth-divider:after{content:"";height:1px;background:#dbe3ef;flex:1}
.tdcms-google-button{display:flex;align-items:center;justify-content:center;width:100%;box-sizing:border-box;padding:13px 16px;border-radius:999px;border:1px solid #cbd5e1;background:#fff;color:#111827;text-decoration:none;font-weight:900;box-shadow:0 8px 22px rgba(15,23,42,.08)}
.tdcms-google-button:before{content:"G";display:inline-flex;align-items:center;justify-content:center;margin-right:10px;width:24px;height:24px;border-radius:999px;background:#f8fafc;color:#2563eb;font-weight:900;border:1px solid #dbe3ef}
.tdcms-google-button:hover{background:#eff6ff;color:#0f172a;border-color:#93c5fd}

/* TrioDesktop CMS account polish + cache-bust verification pass */
body.tdcms-page-login,
body.tdcms-page-signup,
body.tdcms-page-admin,
body.tdcms-page-admin_users,
body.tdcms-page-admin_user,
body.tdcms-page-user_area{
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.28), transparent 34rem),
    linear-gradient(135deg,#eef6ff 0%,#f8fbff 42%,#ffffff 100%);
}
body.tdcms-page-login main,
body.tdcms-page-signup main,
body.tdcms-page-admin main,
body.tdcms-page-admin_users main,
body.tdcms-page-admin_user main,
body.tdcms-page-user_area main{
  min-height:100vh;
  padding-top:88px;
}
body.tdcms-page-login .tdcms-auth-card,
body.tdcms-page-signup .tdcms-auth-card,
body.tdcms-page-admin .tdcms-auth-card,
body.tdcms-page-admin_user .tdcms-auth-card,
body.tdcms-page-user_area .tdcms-dashboard-card,
body.tdcms-page-admin_users .tdcms-admin-head,
body.tdcms-page-admin_users .tdcms-table-wrap{
  border:1px solid rgba(59,130,246,.18);
  box-shadow:0 24px 80px rgba(15,23,42,.16), 0 2px 8px rgba(59,130,246,.08);
}
body.tdcms-page-login .tdcms-auth-card h1,
body.tdcms-page-signup .tdcms-auth-card h1,
body.tdcms-page-admin .tdcms-auth-card h1,
body.tdcms-page-user_area .tdcms-dashboard-card h1,
body.tdcms-page-admin_users .tdcms-admin-head h1{
  font-size:clamp(32px,5vw,52px);
  letter-spacing:-.04em;
}
