:root{
--shadow:0 10px 28px rgba(11,34,54,.08);
--border:rgba(11,34,54,.12);
--radius:14px;
--card:#ffffff;
}

html {
  font-size:16px;
}

body {
  font-size:1rem;
  line-height:1.45;
}

/* ===================================================== */
/*   TLM SPACING SYSTEM     */
/*   Internal (0) + Standard (12) + Home (21) + Wide  */
/*   Plus Global Left Shift + Member Icon Offset     */
/* ===================================================== */


/* ----------------------------------------------------- */
/* 0. BASELINE — Ensure labels can receive padding       */
/* ----------------------------------------------------- */
ul[data-zp-menu-top] > li > a .theme-menu-name {
    display: inline-block !important;
}

/* ----------------------------------------------------- */
/* 1. INTERNAL SPACING — label → arrow spacing           */
/*    (Applies to ALL top-level menu items)              */
/* ----------------------------------------------------- */
ul[data-zp-menu-top] > li > a .theme-menu-name {
    padding-right: 0 !important;
	padding-left: 0 !important;
}

/* ----------------------------------------------------- */
/* 2. EXTERNAL SPACING — STANDARD (all normal items)     */
/* ----------------------------------------------------- */
ul[data-zp-menu-top] > li {
    margin-right: 18px !important; /* standard spacing - 12*/
}

/* ----------------------------------------------------- */
/* 3. HOME — special spacing tier                        */
/* ----------------------------------------------------- */
ul[data-zp-menu-top] > li:has([data-theme-menu-name="Home"]) {
    margin-right: 30px !important;  /* custom HOME spacing - 21*/
}

/* ----------------------------------------------------- */
/* 4. WIDE SPACING — after key grouping breaks           */
/*    (Concierge + Neighborhoods)                        */
/* ----------------------------------------------------- */
ul[data-zp-menu-top] > li:has([data-theme-menu-name="Concierge"]),
ul[data-zp-menu-top] > li:has([data-theme-menu-name="Neighborhoods"]) {
    margin-right: 14px !important;  /* wide spacing - 16, 42*/
margin-left: 0px !important;
}

/* ----------------------------------------------------- */
/* 5. GLOBAL LEFT SHIFT — move ENTIRE TLM LEFT           */
/* ----------------------------------------------------- */
/* Adjust this to -10, -12, -14, -16 as needed */
ul[data-zp-menu-top] {
    margin-left: 8px !important;
}


/* ----------------------------------------------------- */
/* 6. MEMBER PORTAL ICON — push back to the right        */
/* ----------------------------------------------------- */
/* This target selects the ONLY li without a theme-menu-name span */
ul[data-zp-menu-top] > li:not(:has([data-theme-menu-name])) {
    margin-left: 0px !important;  /* adjust 16–24px for perfect spacing */
}


/* ----------------------------------------------------- */
/* 7. MOBILE RESET                                        */
/* ----------------------------------------------------- */
@media (max-width: 980px) {

    /* Remove internal padding */
    ul[data-zp-menu-top] > li > a .theme-menu-name {
        padding-right: 0 !important;
    }

    /* Remove all margins on mobile */
    ul[data-zp-menu-top] > li {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    ul[data-zp-menu-top] {
        margin-left: 0 !important;
    }
}

/* ===================================================== */
/*  TLM FIX — remove right-side gap between submenu + flyout */
/*  Applies only to nested flyouts (sub-submenus)         */
/* ===================================================== */

/* Ensure nested submenu items can anchor pseudo-elements */
ul[data-zp-menu-top] li { position: relative; }

/* 1) Nudge RIGHT-opening flyouts LEFT so they overlap the submenu a bit */
ul[data-zp-menu-top] li ul li > ul {
  left: 100% !important;     /* keep normal right flyout logic */
  margin-left: -2px !important; /* <-- key: overlap to kill the gap (tune -5 to -12) */
}

/* If your theme uses transform instead of margin/left, this also helps */
ul[data-zp-menu-top] li ul li > ul {
  transform: translateX(-8px) !important; /* safe even if it was 0; tune to match margin */
}

/* 2) Hover-bridge: invisible strip that keeps :hover alive while crossing */
ul[data-zp-menu-top] li ul li:has(> ul)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -12px;              /* bridge extends into the gap */
  width: 12px;               /* tune 8–16px */
  background: transparent;
  pointer-events: auto;      /* important: it must *catch* the hover */
}

/* Optional: If the theme adds padding inside the submenu panel that creates the gap,
   this trims it on the side where the flyout spawns. */
ul[data-zp-menu-top] li ul {
  padding-right: 0 !important;
}

/* MOBILE: no flyouts */
@media (max-width: 980px) {
  ul[data-zp-menu-top] li ul li > ul {
    margin-left: 0 !important;
    transform: none !important;
  }
  ul[data-zp-menu-top] li ul li:has(> ul)::after {
    display: none !important;
  }
}



/* ===================================================== */
/*  FOOTER LOGO SIZE CONTROL                            */
/* ===================================================== */
footer .de-footer-logo {
    width: 300px !important;
    max-width: 300px !important;
}
.de-footer-logo {
    width: 300px !important;
    height: auto !important;
    max-width: 100% !important;
    display: block;
}

/* Prevent theme scaling */
.de-footer-logo img {
    width: 100% !important;
    height: auto !important;
}

/* MOBILE CONTROL */
@media (max-width: 768px) {
    .de-footer-logo {
        width: 400px !important;   /* adjust if desired */
    }
}








/* ------------------------------------------------------------
   GLOBAL TYPOGRAPHY (BODY)
   ------------------------------------------------------------ */

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing:-0.01em;
  line-height:1.2;
  margin-bottom: 4px;
  color: #214196;
  text-align: left;
}

h1 .h1-break{
display:block;
font-family:Lato,system-ui,sans-serif;
font-size:.68em;
font-weight:500;
color:#1A357A;
  margin-top:0px;
  margin-bottom:8px;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.5rem; /* 24px */
  letter-spacing:-0.005em;
  line-height: 1.15;
  margin-top: 28px;
  margin-bottom: 6px;
  color: #A3862F; /* gold */
  text-align: left;
}

h2 .h2-break{
  display:block;
  font-size:.8em;
  font-weight:500;
  color:#485460; /* muted */
  margin-top:3px;
  margin-bottom:8px;
  letter-spacing:0;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.3125rem; /* 21px */
  line-height: 1.15;
  margin-top: 1px;
  margin-bottom: 8px;
  color: #333333;
  text-align: left;
}

h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1875rem; /* 19px */
  line-height: 1.35;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #1A357A;
  text-align: left;
}

.subhead{
  font-family:Lato,system-ui,sans-serif;
  font-size:17px;
  color:#333;
  line-height:1.5;
  margin-top:6px;
  max-width:920px;
}

.page-type{
font-family:Montserrat,sans-serif;
font-weight:600;
font-size:13px;
letter-spacing:.08em;
text-transform:uppercase;
color:#4C69D3;
margin:6px 0 8px 0;
}

/* Strategic Insight */
.strategic-insight{
margin:16px 0;
padding:12px 14px;
border-left:4px solid #462D66;
background:rgba(70,45,102,.06);
font-size:15px;
line-height:1.5;
}

.strategic-insight::before{
content:"STRATEGIC INSIGHT";
display:block;
font-family:Montserrat,sans-serif;
font-weight:600;
color:#462D66;
letter-spacing:.08em;
margin-bottom:4px;
}

.resource-wrap .card + .card{
  margin-top:42px;
  padding-top:32px;
  position:relative;
}

.resource-wrap .card + .card::before{
  content:"";
  position:absolute;
  top:0;
  left:28px;
  right:28px;
  height:1px;
  background:rgba(11,34,54,.18);
}

/* References */
.faq-reference{
margin:14px 0;
padding:12px 14px;
border-left:4px solid #214196;
background:rgba(33,65,150,.05);
font-size:15px;
line-height:1.5;
}

.faq-reference::before{
content:"REFERENCES";
display:block;
font-family:Montserrat,sans-serif;
font-weight:600;
color:#214196;
letter-spacing:.08em;
margin-bottom:4px;
}

/* Reference citation line */
.reference-citation{
font-family:Lato,sans-serif;
font-size:14px;
line-height:1.5;
color:#666;
margin-top:6px;
font-style:italic;
}

.faq-reference a{
font-weight:600;
}

.faq-reference .reference-citation{
font-family:Lato,sans-serif;
font-size:14px;
line-height:1.5;
color:#666;
margin-top:6px;
font-style:italic;
}

.hero-guide{
margin:14px 0;
padding:12px 14px;
border-left:4px solid #462D66;
background:rgba(70,45,102,.06);
font-size:16px;
line-height:1.5;
}

.hero-guide::before{
content:"HOW TO USE THIS PAGE";
display:block;
font-family:Montserrat,sans-serif;
font-weight:600;
color:#462D66;
letter-spacing:.08em;
margin-bottom:4px;
}

p {
  font-family:Lato, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  color: #333333;
  margin-bottom: 12px;
  text-align: left;
}

/* Make sure paragraphs are not restricted/narrow or centered by Zoho */
body p:not(.hero p):not(.cta-block *) {
  text-align: left !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Tighter H2/H3 spacing inside Zoho’s internal wrappers */
.z-text h2,
.z-content h2,
.zs-heading h2 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.z-text h3,
.z-content h3,
.zs-heading h3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

/* FORCE CONSISTENT H2 & H3 SPACING ACROSS ALL TEMPLATES */
body:not(.hero) h2,
body:not(.hero) .z-text h2,
body:not(.hero) .z-content h2,
body:not(.hero) .zs-heading h2,
body:not(.hero) .theme-heading h2,
body:not(.hero) .zpHeading h2,
body:not(.hero) .z-row h2,
body:not(.hero) .z-container h2 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

body:not(.hero) h3,
body:not(.hero) .z-text h3,
body:not(.hero) .z-content h3,
body:not(.hero) .zs-heading h3,
body:not(.hero) .theme-heading h3,
body:not(.hero) .zpHeading h3,
body:not(.hero) .z-row h3,
body:not(.hero) .z-container h3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
}

/* ------------------------------------------------------------
   HERO TYPOGRAPHY (ALL HERO SECTIONS)
   ------------------------------------------------------------ */
.zs-htmlContent, 
.zs-text-block, 
.zs-text-container, 
.zs-editable-block {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero h1 {
  color: #FFFFFF !important;
  text-align: center !important;
}

.hero h2 {
  color: #F4E7B2 !important; /* washed gold */
  text-align: center !important;
}

.hero h3,
.hero h4,
.hero p {
  color: #FFFFFF !important;
  text-align: center !important;
}

/* Trusted Local Professionals hero – left-aligned text */
.hero.hero-pro-directory h1,
.hero.hero-pro-directory h2,
.hero.hero-pro-directory h3,
.hero.hero-pro-directory p {
  text-align: left !important;
}

/* Fix hero image stretching */
.hero-section {
  width: 100%;
  height: 480px; /* adjust to taste */
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll;
}

/* Mobile overrides */
@media (max-width: 768px) {
  .hero-section {
    height: 360px; /* mobile height */
    background-size: cover !important;
    background-position: center top !important;
  }
}

/* ------------------------------------------------------------
   BUTTONS / CTAs  (YOUR ORIGINAL BLOCK)
   ------------------------------------------------------------ */

.hero .btn,
.hero a.button,
.hero button,
a.button,
button {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem; /* 16px */
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.65em 1.3em;
  border-radius: 9999px; /* pill shape */
  background-color: var(--primary-color, #0073e6);
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
}

.hero .btn:hover,
.hero a.button:hover,
.hero button:hover,
a.button:hover,
button:hover {
  background-color: var(--primary-color-hover, #005bb5);
  transform: translateY(-2px);
}


/* ------------------------------------------------------------
   MOBILE TYPOGRAPHY & BUTTON SIZING
   ------------------------------------------------------------ */

@media (max-width: 480px) {
  h1, .hero h1 { font-size: 1.75rem; line-height: 1.2; }
  h2, .hero h2 { font-size: 1.375rem; line-height: 1.25; }
  h3, .hero h3 { font-size: 1.2rem; line-height: 1.3; }
  h4, .hero h4 { font-size: 1.0625rem; line-height: 1.35; }
  p, .hero p { font-size: 0.95rem; line-height: 1.45; }

  .hero .btn,
  .hero a.button,
  .hero button,
  a.button,
  button {
    font-size: 0.9rem;
    padding: 0.6em 1.2em;
  }
}

@media (max-width: 360px) {
  h1, .hero h1 { font-size: 1.6rem; line-height: 1.15; }
  h2, .hero h2 { font-size: 1.25rem; line-height: 1.2; }
  h3, .hero h3 { font-size: 1.1rem; line-height: 1.25; }
  h4, .hero h4 { font-size: 1rem; line-height: 1.3; }
  p, .hero p { font-size: 0.9rem; line-height: 1.4; }

  .hero .btn,
  .hero a.button,
  .hero button,
  a.button,
  button {
    font-size: 0.85rem;
    padding: 0.55em 1.1em;
  }
}



  /* FAQ content */
  .faq-content h3 {
    color: #4c69d3;
    margin-bottom: 3px;
    text-align: left !important;
    font-weight: 600;
  }

  .faq-content p {
    margin-top: 0;
    margin-bottom: 12px;
    text-align: left !important;
    line-height: 1.5;
  }
}







/************************************************************
   TRUSTED LOCAL PROFESSIONALS PAGE (".pro-page")
   Scoped fixes ONLY for this page
*************************************************************/

/* ========== 5. ENSURE BODY TEXT (below hero) IS LEFT-ALIGNED ========== */

.pro-page .zpelem-heading h1.zpheading,
.pro-page .zpelem-heading h2.zpheading,
.pro-page .zpelem-heading h3.zpheading,
.pro-page .zpelem-heading h4.zpheading {
  text-align: left !important;
}

/************************************************************
   FOOTER
*************************************************************/

footer a:hover {
  color: #A86500 !important; /* your gold hover if you want it */
}

/************************************************************
   RELOCATION CONCIERGE – Shared layout
*************************************************************/
.reloc-hero,
.reloc-intro,
.reloc-steps,
.reloc-types,
.reloc-services,
.reloc-finance,
.reloc-benefits,
.reloc-testimonials,
.reloc-cta { padding: clamp(40px, 6vw, 80px) 0; }

.container { width: min(1200px, 92vw); margin: 0 auto; }

.eyebrow { font: 600 0.9rem/1.2 Montserrat, system-ui, sans-serif; letter-spacing: .06em; text-transform: uppercase; color: #6B449B; margin: 0 0 6px; }

.btn { display: inline-block; padding: 12px 18px; border-radius: 6px; text-decoration: none; font: 700 0.95rem/1 Montserrat, system-ui, sans-serif; }
.btn-primary { background: #214196; color: #fff; }
.btn-primary:hover { background: #4C69D3; }

.hero-links { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-links a { font: 600 0.9rem/1.2 Montserrat, system-ui, sans-serif; color: #214196; text-decoration: none; border-bottom: 2px solid transparent; }
.hero-links a:hover { border-bottom-color: #A3862F; }


/* Steps */
.reloc-steps h3,
.reloc-types h3,
.reloc-services h3,
.reloc-finance h3,
.reloc-benefits h3,
.reloc-testimonials h3,
.reloc-cta h3 { font: 700 clamp(22px, 3vw, 30px)/1.2 Montserrat, system-ui, sans-serif; color: #214196; margin: 0 0 18px; }

.steps { display: grid; gap: 16px; grid-template-columns: 1fr; counter-reset: step; }
.steps li { list-style: none; padding: 16px 18px; border: 1px solid #eee; border-radius: 10px; background: #fff; }
.steps li h4 { font: 600 1.05rem/1.35 Montserrat, system-ui, sans-serif; margin: 0 0 6px; color: #333; }
.steps li p { font: 400 0.98rem/1.6 Lato, system-ui, sans-serif; color: #555; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* Relocation types */
.reloc-types .cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
.card { border: 1px solid #eee; border-radius: 10px; padding: 18px; background: #fff; }
.card .link { display: inline-block; margin-top: 8px; font: 700 0.95rem/1 Montserrat, system-ui, sans-serif; color: #214196; text-decoration: none; }
.card .link:hover { color: #4C69D3; }
@media (min-width: 900px) { .reloc-types .cards { grid-template-columns: repeat(3, 1fr); } }

/* Services */
.reloc-services .grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.svc { border: 1px solid #eee; border-radius: 10px; padding: 18px; background: #fff; }
.svc h4 { font: 600 1.05rem/1.35 Montserrat; color: #333; margin: 0 0 6px; }
.svc ul { margin: 0; padding-left: 18px; }
.svc li { font: 400 0.98rem/1.6 Lato; color: #555; }
@media (min-width: 900px) { .reloc-services .grid { grid-template-columns: repeat(4, 1fr); } }

/* Financing partners */
.reloc-finance .badge { display: inline-block; background: #FFF7EA; color: #A3862F; border: 1px solid #F3E1C3; font: 700 0.8rem/1 Montserrat; padding: 6px 10px; border-radius: 999px; margin: 6px 0 12px; }
.partners { display: grid; gap: 16px; grid-template-columns: 1fr; }
.partner { border: 1px dashed #E6E9F5; border-radius: 10px; padding: 16px; background: #FBFCFF; }
.partner h4 { margin: 0 0 6px; font: 600 1.02rem/1.35 Montserrat; color: #333; }
.partner p { margin: 0 0 6px; font: 400 0.98rem/1.6 Lato; color: #555; }
.partner .meta a { color: #214196; text-decoration: none; font-weight: 700; }
.partner .meta a:hover { color: #4C69D3; }
.reloc-finance .disclaimer { margin-top: 10px; font: 400 0.9rem/1.5 Lato; color: #777; }

/* Benefits */
.benefit-list { display: grid; gap: 10px; grid-template-columns: 1fr; }
.benefit-list li { list-style: none; background: #F6F8FF; border: 1px solid #E6E9F5; border-radius: 10px; padding: 12px 14px; font: 400 0.98rem/1.6 Lato; color: #333; }
@media (min-width: 900px) { .benefit-list { grid-template-columns: repeat(2, 1fr); } }

/* Testimonials */
.testimonial-placeholder { padding: 18px; border: 1px dashed #E6E9F5; border-radius: 10px; background: #FBFCFF; font: 400 0.98rem/1.6 Lato; color: #555; }

/* CTA footer */
.reloc-cta { background: linear-gradient(180deg, rgba(33,65,150,0.07), rgba(161,134,47,0.06)); text-align: center; }
.reloc-cta p { font: 400 1rem/1.1 Lato; color: #333333; margin: 6px 0 14px; }

/* INTRO BLOCK */
.reloc-intro-block {
  padding: clamp(40px, 6vw, 70px) 0;
  background: #ffffff;
}

.reloc-intro-block .intro-text {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;       /* You can adjust to 20px if desired */
  line-height: 1.25;
  color: #333333;
  margin-bottom: 18px;
}

.reloc-intro-block .btn-primary {
  display: inline-block;
  margin: 14px 0 24px;
}

.hero-links-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.hero-links-intro a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #214196;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.hero-links-intro a:hover {
  border-bottom-color: #A3862F;
}
/* Centered + spaced + responsive hero links */
.hero-links-intro {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;  /* more vertical & horizontal spacing */
  margin-top: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-links-intro a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px; /* slightly larger for readability */
  color: #214196;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 4px 6px;
}

.hero-links-intro a:hover {
  border-bottom-color: #A3862F;
}

/* Mobile tuning */
@media (max-width: 600px) {
  .hero-links-intro {
    gap: 14px 18px; /* tighter but still roomy */
    font-size: 14px;
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-links-intro a {
    font-size: 14px;
  }
}

.reloc-section-divider {
  width: 100%;
  height: 2px;
  background: rgba(163, 134, 47, 0.4); /* brand gold at 25% opacity */
  margin: 30px 0 0;  /* top & bottom spacing around the divider */
}

/************************************************************
   CALCULATORS 
*************************************************************/
.calculator-hub {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.hub-intro {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 20px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.hub-card {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.hub-card h3 {
  margin-top: 0;
  color: #214196;
  font-size: 1.1rem;
}

.hub-card p {
  font-size: 0.95rem;
  color: #555;
}

.hub-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #214196;
  text-decoration: none;
}

.hub-link:hover {
  text-decoration: underline;
}

.hub-notes {
  padding-left: 18px;
  color: #555;
}

.hub-disclaimer {
  font-size: 0.9rem;
  color: #666;
  margin-top: 20px;
}

.calc-card{
  background:#fff;
  border-radius:12px;
  border:1px solid var(--border);
  padding:26px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  margin-top:28px;
}

.cg-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:16px 24px;
  align-items:center;
}

/* ====================================
   CALCULATOR PAGE & FOOTER DISCLAIMER
======================================= */
.calc-page {
  max-width: 980px;
  margin: 0 auto 30px;  
  padding: 0 18px;
}

.calculator-footer {
  margin-top: 8px;
  padding: 16px 6px;
  background: #f8f9fb;
  border-top: 3px solid #214196;
  font-size: 14px;
  line-height: 1.6;
}

.calculator-footer h2 {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #214196;
  margin-bottom: 16px;
}

.calculator-footer h3 {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A357A;
  margin-top: 28px;
  margin-bottom: 10px;
}

.calculator-footer p {
  margin-bottom: 12px;
  color: #333;
}

.calculator-footer .disclaimer-strong {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.calculator-footer hr {
  margin: 8px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.calculator-footer .seo-tail {
  font-size: 13px;
  color: #555;
}


/* =======================================================
   POST-CALC CARD STYLING (SAFE – no global heading changes)
======================================================= */

.postcalc-wrapper {
  margin-top: 36px;
}

.postcalc-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 28px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}

.postcalc-card h2 {
  color: #462d66; /*  3A2554  */
}

.postcalc-card p {
  line-height: 1.6;
  margin-bottom: 12px;
}

.postcalc-card ul {
  margin-left: 18px;
  line-height: 1.6;
}

.postcalc-cta {
  background: #f3f6fc;
  border-color: rgba(33,65,150,.25);
  text-align: center;
}

.postcalc-button {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 22px;
  background: #214196;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
}

.postcalc-button:hover {
  background: #1A357A;
}

/* ============================================================
   DYNAMICEDGE PRINT SYSTEM
   Applies to: Calculators, Checklists, Guides
   ============================================================ */

@media print {

  /* ---------------------------------
     GLOBAL RESET
  --------------------------------- */

  body{
    background:#ffffff !important;
    color:#000000 !important;
  }

  header,
  nav,
  footer,
  .theme-footer-area,
  [data-footer-type],
  .cta-section,
  .calc-lp-cta{
    display:none !important;
  }

  .calc-page,
  .toolkit-wrap{
    margin-top:0 !important;
    max-width:100% !important;
  }

  /* ---------------------------------
     PRINT HEADER
  --------------------------------- */

  .print-header{
    display:block;
    margin-bottom:24px;
    padding-bottom:14px;
    border-bottom:2px solid #000;
    font-family:'Montserrat', sans-serif;
  }

  .ph-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
  }

  .ph-left,
  .ph-right{
    font-size:13px;
    line-height:1.4;
  }

  .ph-brand{
    font-weight:700;
    font-size:16px;
    margin-bottom:4px;
  }

  .ph-title{
    font-weight:700;
    font-size:16px;
    margin-bottom:4px;
  }

  .ph-footer{
    margin-top:14px;
    font-size:11px;
    line-height:1.4;
  }

  .ph-label{
    font-weight:700;
    margin-right:.4em;
  }

  /* ---------------------------------
     PAGE BREAK CONTROL
  --------------------------------- */

  .print-break-before{
    break-before:page;
    page-break-before:always; /* legacy */
  }

  .de-card,
  .calc-card{
    box-shadow:none !important;
    page-break-inside:avoid;
  }

}

/************************************************************
   TIMELINE WRAPPER 
*************************************************************/

.reloc-steps .how-it-works-timeline,
.zs-htmlContent .how-it-works-timeline,
.zs-content-block .how-it-works-timeline {
  position: relative !important;
  margin-top: 20px !important;
  padding-left: 60px !important;
}

/* EACH STEP ROW */
.reloc-steps .timeline-step,
.zs-htmlContent .timeline-step,
.zs-content-block .timeline-step {
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 32px !important;
  position: relative !important;
}

/* GOLD NUMBERED CIRCLE */
.reloc-steps .step-number,
.zs-htmlContent .step-number,
.zs-content-block .step-number {
  position: relative !important;
  min-width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #A3862F !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-right: 20px !important;
  z-index: 2 !important;
}

/* CONNECTOR LINE (vertical line under each circle) */
.timeline-connector {
  content: "";
  position: absolute !important;
  top: 40px !important;            /* STARTS at bottom of the circle */
  left: 19px !important;           /* CENTER of circle */
  width: 3px !important;
  height: 56px !important;         /* LENGTH reaching toward next circle */
  background: rgba(163,134,47,0.35) !important;
  display: block !important;
  z-index: 1 !important;
}

/* STEP HEADING (H3) – ALIGN WITH CIRCLE VERTICALLY */
.reloc-steps .step-content h3,
.zs-htmlContent .step-content h3,
.zs-content-block .step-content h3 {
  margin-top: 0px !important;      /* ADJUST THIS to align perfectly */
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  color: #333333 !important;
}

/* STEP DESCRIPTION */
.reloc-steps .step-content p,
.zs-htmlContent .step-content p,
.zs-content-block .step-content p {
  font-family: 'Lato', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #444444 !important;
  margin: 0 !important;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 767px) {
  .timeline-connector {
    left: 15px !important;
    height: 32px !important;
  }
  .step-number {
    min-width: 32px !important;
    height: 32px !important;
    font-size: 15px !important;
  }
  .step-content h3 {
    font-size: 18px !important;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 767px) {
  .how-it-works-timeline {
    padding-left: 20px;
  }
  .timeline-line {
    left: 10px;
  }
  .step-number {
    min-width: 32px;
    height: 32px;
    font-size: 16px;
    margin-right: 12px;
  }
  .step-content h3 {
    font-size: 18px;
  }
}

/* ============================================================
   GLOBAL CTA SYSTEM
   Clean, Unified, Used Everywhere
   ============================================================ */

/* ===============================
   CTA SECTION (Optional Wrapper)
   =============================== */

.cta-section{
  padding:48px 20px;
  margin:48px 0;
  text-align:center;
}

.cta-section.soft{
  background:rgba(33,65,150,.05);
}

.cta-section.neutral{
  background:#f7f9fc;
}

.cta-card{
  background:#ffffff;
  border:1px solid rgba(11,34,54,.10);
  border-radius:16px;
  padding:36px 32px;
  max-width:820px;
  margin:18px auto;
  box-shadow:0 8px 22px rgba(11,34,54,.06);
  text-align:center;
}

.cta-card h2{
  color: #214196;
  margin:0 0 12px;
  text-align:center;
}

.cta-card p{
  margin:0 0 22px;
  text-align:center;
  font-size:1.05rem;
  color:var(--muted);
}


/* ===============================
   PRIMARY CTA BUTTON
   =============================== */

.cta-btn{
  display:inline-block;
  background:#214196;
  color:#ffffff;
  padding:12px 26px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition:.2s ease;
}

.cta-btn:hover{
  background:#3557C9;
  color:#ffffff;
}


/* ===============================
   MINI CTA SYSTEM
   =============================== */

.mini-cta-wrap{
  margin:36px 0 28px;
  display:flex;
  justify-content:center;
}

.mini-cta-inner{
  text-align:center;
  max-width:720px;
}

.mini-cta-inner p{
  margin:0 0 12px;
  font-size:1.05rem;
}

.mini-cta{
  font-weight:600;
  color:#4C69D3;
  text-decoration:none;
  transition:.2s ease;
}

.mini-cta:hover{
  text-decoration:underline;
}

/* ============================================================
   GLOBAL TESTIMONIAL SYSTEM
   Works for:
   - LP pages
   - Success Stories page
   - Tabs / snippet containers
   ============================================================ */
/* Card wrapper */
.testimonials-card,
.testimonials-block{
  background:#ffffff;
  border:1px solid rgba(11,34,54,.08);
  border-radius:16px;
  padding:32px;
  margin:40px 0;
  box-shadow:0 8px 22px rgba(11,34,54,.05);
}

/* Section title */
.testimonials-card h2,
.testimonials-block h2{
  margin-bottom:18px;
  color:#4C69D3;
  font-size:26px;
  font-family:'Montserrat', sans-serif;
}

/* Quote container */
.testimonials-card blockquote,
.testimonials-block blockquote{
  border-left:4px solid #4C69D3;
  padding:18px 22px;
  margin:22px 0;
  background:#f7f9fc;
  border-radius:10px;
  font-size:18px;
  line-height:1.7;
  color:var(--ink);
}

/* Quote paragraph (LP pages) */
.testimonials-card blockquote p,
.testimonials-block blockquote p{
  font-size:18px;
  line-height:1.7;
  margin:0 0 10px;
}

/* Attribution */
.testimonials-card blockquote footer,
.testimonials-block blockquote footer{
  display:block;
  margin-top:10px;
  font-size:15px;
  font-weight:600;
  color:#214196;
}

.testimonials-block .cta-card h2,
.testimonials-block .cta-card p{
  text-align:center !important;
}

/***********************************************************
* 4-BUTTON STRIP - CONTACT ME - BUYER VERSION
************************************************************/
/* BUYER CONTACT STRIP */
#contact-strip-buyer{
  padding:10px 0;
  background:#fff;
  max-width:1200px;
  margin:auto;
  border-top:2px solid #e6ecfb;
  border-bottom:2px solid #e6ecfb;
}


/* ===============================
   ARTICLE TEMPLATE STYLES
   =============================== */
.article-wrap{
  max-width:760px;
  margin:0 auto;
  padding:0 20px 90px;
}

.article-wrap p {
  font-family:'Inter', sans-serif !important;
  font-size:18px !important;
  line-height:1.5 !important;
  letter-spacing:0.01em !important;
  color:#1c1c1c !important;
  margin:16px 0 !important;
}

.article-wrap h1{
  font-family:'Montserrat', sans-serif !important;
  font-weight:600 !important;
  font-size:32px !important;
  color:#214196 !important;
}

.article-wrap h2{
  font-family:'Montserrat', sans-serif !important;
  font-weight:600 !important;
  font-size:26px !important;
  margin-top:72px !important;
  margin-bottom:3px !important;
  color:#A3862F !important;
}

.article-wrap h2 + p{
  margin-top:6px !important;
}

.article-wrap h3{
  font-family:'Montserrat', sans-serif !important;
  font-weight:600 !important;
  font-size:20px !important;
  margin-top:3px !important;
  color:#1A357A !important;
}

/* List container */
.article-wrap ul{
  margin:12px 12px 16px 24px;
  line-height:1.1 !important;
}

/* Tighter list if directly after heading */
.article-wrap h2 + ul,
.article-wrap h3 + ul{
  margin-top:2px !important;
}

/* Bullet spacing */
ul{
  margin-left: 28px !important;
}
.article-wrap ul{
  padding-left: 21px !important;
  margin-left: 0 !important;
}
.article-wrap li{
  margin:0 12px 6px 0 !important;
  line-height:1.5 !important;
}

.article-hero{
  background:#ffffff;
  border:1px solid rgba(11,34,54,.12);
  border-radius:14px;
  box-shadow:0 10px 28px rgba(11,34,54,.08);
  padding:28px;
  margin-bottom:5px !important;
}

.article-hero h1{
  font-family:'Montserrat', sans-serif !important;
  font-weight:600 !important;
  font-size:32px !important;
  color:#214196 !important;
  line-height:1.2;
  letter-spacing:-0.015em;
  max-width:680px;
}

.hero-sub{
  display:block;
  font-size:22px;
  font-weight:500;
  color:#1A357A;
  margin-top:0px;
}

.article-excerpt{
  font-family:'Inter', sans-serif;
  font-size:18px;
  line-height:1.6;
  color:#1A357A;
  margin-top:8px;
  max-width:720px;
}

/* Related Resources */
.article-related{
  background:rgba(76,105,211,.06);
  border:1px solid rgba(76,105,211,.18);
  border-radius:14px;
  padding:18px 24px !important;
  margin:12px 0 12px 0 !important;
  row-gap: 3px !important;
}

.article-related-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0px;
  padding: 1px 18px !important;
  margin-top:0px;
}

.article-related h2{
  font-family:'Montserrat', sans-serif;
  font-weight:600;
  font-size:26px;
  color:#A3862F;
  margin-bottom: 0px !important;
  margin-top:0 !important;
}

.article-related h3{
  font-family:'Montserrat', sans-serif;
  font-weight:600;
  font-size:16px;
  color:#333;
  margin:3px 0 6px !important;
}
/* Tighten heading stack inside Related Resources */
.article-related ul{
  margin:6px 0 0 18px;
}

.article-related li{
  margin:4px 0;
}

/* Article Body */
.article-content,
.article-content p,
.article-content li,
.article-content strong,
.article-content em {
  font-family:'Inter', sans-serif !important;
}

.article-content{
  font-size:18px;
  line-height:1.5;
  letter-spacing:0.01em;
  color:#1c1c1c;
}

.article-content p{
  margin:16px 0;
}

/* GOLD DIVIDER */
.article-content h2::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:36px;       /* longer is 128 */
  height:1px;       /* thinner */
  background:#A3862F;
  border-radius:2px;
}

.article-content h2{
  font-family:'Montserrat', sans-serif;
  font-weight:600;
  font-size:26px;
  color:#A3862F;
  margin:84px 0 4px 0 !important;
  position:relative;
  padding-top:16px;
}

.article-content h3{
  font-family:'Lato', sans-serif;
  font-weight:700;
  font-size:19px;
  color:#1A357A;
  margin:28px 0 12px !important;
}
.article-content h2 + p{
  margin-top:6px;
}

.article-content h3 + p{
  margin-top:4px;
}

.article-content ul{
  margin:16px 0 16px 20px !important;
  padding-top:0 !important;
  padding-bottom:0 !important;
}

.article-content li{
  margin:8px 0;
}

.article-content h2 + ul,
.article-content h3 + ul{
  margin-top:0px !important;
}

/* Applying This Framework */
.article-next{
  margin-top:40px;
  padding-top:16px;
}

.article-next h2{
  font-family:'Montserrat', sans-serif;
  font-weight:600;
  font-size:26px;
  color:#A3862F;
  margin:0 0 8px;
}

.article-next p{
  font-size:17px;
  line-height:1.7;
  color:#333;
}

/* Semantic Footer */

.article-semantic{
  margin-top:70px;
  padding-top:24px;
  border-top:1px solid rgba(11,34,54,.12);
}

.article-semantic h2{
  font-family:'Montserrat', sans-serif;
  font-weight:600;
  font-size:26px;
  color:#A3862F;
  margin:0 0 10px !important;
}

.article-semantic p{
  font-size:16px;
  line-height:1.6;
  color:#5b6a78;
}

/* Responsive */

@media (max-width:768px){
  .article-related-grid{
    grid-template-columns:1fr;
  }
}

/* ZOHO INHERITANCE OVERRIDES */
body:not(.hero) .article-wrap .article-content h2{
  margin-top:48px !important;
  margin-bottom:4px !important;
}

body:not(.hero) .article-wrap .article-related > h2{
  margin-top:0 !important;
}


/* Tighten H2 only inside Related Resources */
body:not(.hero) .article-related > h2{
  margin-top:0 !important;
}
/* Override Zoho heading spacing ONLY inside Related Resources */

body:not(.hero) .z-container .article-related h2{
  margin-bottom: 0px !important;
}

body:not(.hero) .z-container .article-related h3{
  margin-top: 0px !important;
}
/* Force reset only inside Related Resources */

body:not(.hero) .article-related > h2{
  margin: 0 0 4px 0 !important;
}

body .cta-block p {
  text-align: center !important;
}


/* ========================================
   ARTICLE LIST — LEFT PADDING
   ======================================== */
body:not(.hero) .z-content .article-wrap .article-content ul{
  margin-left: 28px !important;
}

/* ===========================================
   DynamicEdge Market Index™ Global System
   =========================================== */

/* ===== Core DMI Colors (EDIT THESE ONLY) ===== */
:root{
  --dmi-buyer-extreme: #DADDE2;
  --dmi-buyer-active:  #AAB4C0;
  --dmi-healthy:       #4C69D3;
  --dmi-seller-active: #4C69D3;
  --dmi-seller-extreme:#4D42C4
;
  --dmi-marker: #0b2236;
}



/* ===========================================
   DMI GRADIENT BAR
   =========================================== */
.dmi-scale{
  position:relative;
  height:10px;
  border-radius:999px;
  margin-top:14px;

background: linear-gradient(
  90deg,
  #DADDE2 0%,
  #BFC6D1 15%,
  #4C69D3 50%,
  #4C69D3 75%,
  #4D42C4 100% /* 40285d */
);
}

/* Tick Marks at 20/40/60/80 */
.dmi-scale::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border-radius:999px;
  background:
    linear-gradient(to right,
      transparent 19.5%, var(--dmi-tick) 20%, transparent 20.5%,
      transparent 39.5%, var(--dmi-tick) 40%, transparent 40.5%,
      transparent 59.5%, var(--dmi-tick) 60%, transparent 60.5%,
      transparent 79.5%, var(--dmi-tick) 80%, transparent 80.5%
    );
  pointer-events:none;
}

/* Score Marker */
.dmi-marker{
  position:absolute;
  top:-6px;
  width:21px;
  height:21px;
  background:var(--dmi-marker);
  border-radius:50%;
  transform:translateX(-50%);
  box-shadow:0 3px 8px rgba(0,0,0,.35);
  border:2px solid #ffffff;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.15),
    0 3px 8px rgba(0,0,0,.35);
}

.dmi-mini p{
  margin:16px 0 0;
  font-size:.92rem;
  color:#5b6a78;
  line-height:1.4;
}

.dmi-mini a{
  display:inline-block;
  margin-top:14px;
  font-size:.9rem;
  color:#1D48E2;
  font-weight:600;
  text-decoration:none;
}
.dmi-mini a:hover{
  text-decoration:underline;
}


/* ============================================================
   DMI TIER COLOR SYSTEM
   ============================================================ */
/* Buyer-Heavy */
.dmi-low{
  color:#7C8591;
}

/* Balanced + Seller-Heavy */
.dmi-mid{
  color:#4C69D3;
}

/* Extreme Seller */
.dmi-high{
  color:#6B449B;
}

.dmi-summary-header{
  display:flex;
  align-items:center;
  gap:0px; /* controls spacing between score + label */
}

.dmi-tier{
  font-weight:600;
  letter-spacing:.2px;
}

.dmi-tier::before{
  margin:0 2px;
  color:rgba(11,34,54,.35);
}
/* ============================================================
   UNIFIED ACCORDION SYSTEM
   ============================================================ */

.accordion{
  display:grid;
  gap:14px;
  margin-top:16px;
}

.accordion details{
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  overflow:hidden;
}

/* Remove default markers */
.accordion summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 18px;
  font-weight:600;
}

.accordion summary::-webkit-details-marker{
  display:none;
}

.accordion summary::marker{
  display:none;
}

/* Chevron */
.accordion summary::after{
  content:"⌄";
  font-size:1.1rem;
  opacity:.6;
  transition:.2s ease;
}

.accordion details[open] summary::after{
  transform:rotate(180deg);
  opacity:1;
}

/* Body */
.accordion .acc-body{
  border-top:1px solid var(--border);
  padding:14px 18px 18px;
  color:var(--muted);
  line-height:1.5;
}

.accordion .acc-body p{
  margin:0 0 10px;
}

.accordion .acc-body p:last-child{
  margin-bottom:0;
}



/* ===================================
   GLOBAL FAQ ACCORDION - NO NUMBERS
   =================================== */
.faq-wrap{
max-width:1120px;
margin:0 auto;
padding:0 18px 64px;
}

.faq-accordion{
  margin-top:14px;
}

/* FAQ rendering optimization */

.faq-accordion details{
  font-family:Lato,sans-serif;
  font-size:16px;
  border:1px solid rgba(11,34,54,.12);
  border-radius:12px;
  padding-left:0;
  background:#fff;
  overflow:hidden;
  transition:box-shadow .15s ease, border-color .15s ease;
  will-change:border-color, box-shadow;
  transition:border-color .15s ease, box-shadow .15s ease;
}

.faq-accordion details + details{
  margin-top:12px;
}

/* Active FAQ stripe indicator */
.faq-accordion details[open] summary{
position:relative;
}

.faq-accordion details[open] summary::before{
content:"";
position:absolute;
left:0;
top:0;
bottom:0;
width:2px;
background:#4C69D3;
opacity:.7;
border-radius:2px;
}

/* Space between question and answer */
.faq-accordion .faq-body{
padding:14px 20px 18px;
}

.faq-accordion summary{
  font-family:Lato,sans-serif;
  cursor:pointer;
  list-style:none;
  font-weight:700;
  letter-spacing:-.01em;
  padding:16px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
  color:#214196;
}

.faq-accordion summary::-webkit-details-marker{
  display:none;
}

.faq-accordion summary:hover{
color:#4C69D3;
background:rgba(33,65,150,.05);
}

.faq-accordion details[open]{
border-color:#214196;
box-shadow:0 4px 12px rgba(33,65,150,.08);
}

.faq-accordion details[open] summary{
color:#1A357A;
border-bottom:1px solid rgba(11,34,54,.08);
}

/* Chevron */
.faq-accordion summary::after{
  content:"▼";
  font-size:1.2rem;
  opacity:.7;
  transition:.2s ease;
}

.faq-accordion details[open] summary::after{
  transform:rotate(180deg);
}

/* Ensure FAQ accordion chevrons behave correctly */
.faq-accordion details summary::after{
  content:"▼";
  font-size:1rem;
  opacity:.7;
  transition:.2s ease;
}

.faq-accordion details[open] > summary::after{
  transform:rotate(180deg);
}

/* Body */
.faq-body{
font-family:Lato, system-ui, sans-serif;
font-size:16px;
line-height:1.65;
color:#333333;
max-width:720px;
  margin-left:16px;
  padding:14px 28px 18px 0;
}

.faq-body p{
margin:0 0 10px 0;
}

.faq-accordion details > p{
  margin:0;
  color:#485460;
  line-height:1.5;
  font-size:1rem;
}

.faq-body .strategic-insight,
.faq-body .faq-reference{
margin-left:0;
}

.faq-body ul{
margin:12px 0 12px;
padding-left:20px;
}


/* ============================================================
   NUMBERED ACCORDION (GLOBAL) — MATCHES Buyer Advantage
   ============================================================ */

.accordion-numbered{
  display:grid;
  gap:18px;              /* Match buyer-adv gap */
  margin-top:12px;
}

.accordion-numbered details{
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  overflow:hidden;
  margin:0;
}

/* slightly tighter stacking like buyer (optional but matches your -3px) */
.accordion-numbered details + details{
  margin-top:-3px;
}

/* Summary layout */
.accordion-numbered summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:8px 8px;       /* Match buyer-adv padding */
  cursor:pointer;
  list-style:none !important;
}

/* Remove default markers */
.accordion-numbered summary::-webkit-details-marker{ display:none !important; }
.accordion-numbered summary::marker{ display:none !important; content:""; }

/* Left group (number + title) */
.accordion-numbered .acc-left{
  display:flex;
  align-items:center;
  gap:14px;
}

/* Number circle */
.accordion-numbered .acc-num{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#fff;
  border:1px solid #A3862F;
  color:#214196;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.9rem;
  box-shadow:
    0 0 0 2px rgba(163,134,47,.08),
    0 2px 6px rgba(0,0,0,.06);
}

/* Title — match buyer */
.accordion-numbered .acc-title{
  color:#1A357A;
  font-weight:700;
  font-size:18px;
  line-height:1;
}

/* Chevron (single, clean) */
.accordion-numbered summary::after{
  content:"▼";
  font-size:1rem;
  opacity:.7;
  transition:.2s ease;
}

.accordion-numbered details[open] summary::after{
  transform:rotate(180deg);
}

/* Prevent numbered accordion from affecting inner FAQ accordions */
.accordion-numbered .faq-accordion summary::after{
  transform:none;
}

/* Body — match buyer padding rhythm */
.accordion-numbered .acc-body{
  border-top:1px solid var(--border);
  padding:5px 54px 7px;   /* Match buyer-adv-body */
}

.accordion-numbered .acc-body p{
  margin:0 0 5px;
  color:var(--muted);
}

.accordion-numbered .acc-body p:last-child{
  margin-bottom:0;
}
/* STRONGER specificity to override theme */

.accordion-numbered > details > summary{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:8px !important;
  padding:8px 8px !important;
  list-style:none !important;
  text-align:left !important;
}

.accordion-numbered > details > summary .acc-left{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
}

.accordion-numbered > details > summary .acc-title{
  color:#1A357A !important;
  font-weight:700 !important;
  font-size:18px !important;
  line-height:1 !important;
}




/* =================================================
   =================================================
     DYNAMICEDGE TOOLKIT SYSTEM
     Safe scoped global CSS
     Only activates inside .de-toolkit
   =================================================
   ================================================= */

.de-toolkit{

  --de-primary:#214196;
  --de-primary-dark:#1A357A;
  --de-blue:#4C69D3;
  --de-violet:#6B449B;
  --de-gold:#A3862F;
  --de-gold-light:#E2C47A;

  --de-bg:#F7F7F7;
  --de-card:#FFFFFF;
  --de-border:#E6E6E6;

  --de-radius:10px;
  --de-shadow:0 10px 28px rgba(0,0,0,.06);

  font-family:Lato,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:#2F2F2F;
  max-width:1100px;
  margin:auto;
  padding:0 20px 60px;
}



/* ========================================
   TOOLKIT CONTAINER
======================================== */

.de-toolkit .toolkit-container{
  max-width:1000px;
  margin:auto;
}



/* ========================================
   HERO
======================================== */

.de-toolkit .toolkit-hero{
  margin-bottom:32px;
}

.de-toolkit .toolkit-hero h1{
  font-family:Montserrat,sans-serif;
  font-weight:600;
  color:var(--de-primary);
  margin-bottom:10px;
}

.de-toolkit .toolkit-hero p{
  font-family:Montserrat,sans-serif;
  font-size:16px;
  color:var(--de-primary-dark);
  max-width:820px;
}



/* ========================================
   MINI TOOLBAR NAV
======================================== */

.de-toolkit .tool-nav{
  display:flex;
  flex-wrap:wrap;
  gap:0px 18px;
  padding:0px 0 0;
  margin:0 0 26px;
  border-bottom:1px solid var(--de-border);
}

.de-toolkit .tool-nav a{
  font-family:Montserrat,sans-serif;
  font-weight:500;
  font-size:14px;
  color:var(--de-primary-dark);
  text-decoration:none;
  padding:8px 0 12px;
  position:relative;
  white-space:nowrap;
}

.de-toolkit .tool-nav a:hover{
  color:var(--de-blue);
}

.de-toolkit .tool-nav a.is-active{
  color:var(--de-primary);
  font-weight:600;
}

.de-toolkit .tool-nav a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background:var(--de-gold);
  border-radius:2px;
}



/* ========================================
   ADVISORY CARDS (How To / Tips)
======================================== */

.de-toolkit .hero-grid{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:28px;
}

.de-toolkit .hero-box{
  flex:1;
  min-width:260px;
  background:var(--de-card);
  border-radius:var(--de-radius);
  box-shadow:var(--de-shadow);
  padding:18px;
  border-left:4px solid var(--de-gold);
}

.de-toolkit .hero-box h3{
  font-family:Montserrat,sans-serif;
  font-weight:700;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--de-violet);
  margin:0 0 8px 0;
}

.de-toolkit .hero-box p{
  margin:0;
  font-size:15px;
  color:#3a3a3a;
}



/* ========================================
   CARD SYSTEM
======================================== */

.de-toolkit .toolkit-card{
  background:var(--de-card);
  border-radius:var(--de-radius);
  box-shadow:var(--de-shadow);
  padding:26px;
  margin-bottom:28px;
}



/* ========================================
   SECTION HEADERS
======================================== */

.de-toolkit .toolkit-section h2{
  font-family:Montserrat,sans-serif;
  font-weight:600;
  font-size:22px;
  color:var(--de-gold);
  margin-bottom:18px;
  padding-bottom:8px;
  border-bottom:2px solid rgba(163,134,47,.35);
}

.de-toolkit .toolkit-section h3{
  font-family:Montserrat,sans-serif;
  font-weight:600;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--de-primary-dark);
  margin-bottom:12px;
}



/* ========================================
   CHECKLIST SYSTEM
======================================== */

.de-toolkit .checklist{
  list-style:none;
  padding:0;
  margin:0;
}

.de-toolkit .checklist li{
  display:flex;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--de-border);
}

.de-toolkit .checklist li:last-child{
  border-bottom:none;
}

.de-toolkit .check-num{
  width:28px;
  height:28px;
  min-width:28px;
  border-radius:50%;
  background:var(--de-primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-family:Montserrat,sans-serif;
  font-size:13px;
}

.de-toolkit .check-content{
  flex:1;
}

.de-toolkit .check-title{
  font-family:Montserrat,sans-serif;
  font-weight:600;
  font-size:15px;
  color:var(--de-primary-dark);
}

.de-toolkit .check-desc{
  font-size:14px;
  color:#555;
}



/* ========================================
   CTA CARD
======================================== */

.de-toolkit .cta-card{
  background:#F9FBFF;
  border-left:4px solid var(--de-gold);
}

.de-toolkit .cta-card h3{
  font-family:Montserrat,sans-serif;
  font-weight:600;
  color:var(--de-primary);
  margin-bottom:10px;
}

.de-toolkit .cta-btn{
  display:inline-block;
  margin-top:10px;
  padding:12px 18px;
  background:var(--de-primary);
  color:white;
  text-decoration:none;
  border-radius:6px;
  font-family:Montserrat,sans-serif;
  font-weight:600;
}

.de-toolkit .cta-btn:hover{
  background:var(--de-blue);
}



/* ========================================
   PRINT HEADER
======================================== */

.de-toolkit .print-header{
  display:none;
}

@media print{

  .de-toolkit .print-header{
    display:block;
    margin-bottom:24px;
    padding-bottom:14px;
    border-bottom:2px solid #000;
    font-family:Montserrat,system-ui,sans-serif;
  }

  .de-toolkit .ph-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
  }

  .de-toolkit .ph-left{
    font-size:13px;
    line-height:1.4;
  }

  .de-toolkit .ph-brand{
    font-weight:700;
    font-size:16px;
    margin-bottom:4px;
  }

  .de-toolkit .ph-right{
    text-align:right;
    font-size:13px;
  }

  .de-toolkit .ph-title{
    font-weight:700;
    font-size:16px;
    margin-bottom:4px;
  }

  .de-toolkit .ph-footer{
    margin-top:14px;
    font-size:11px;
    line-height:1.4;
  }

  .de-toolkit .cta-card{
    display:none;
  }

  .de-toolkit .toolkit-card{
    box-shadow:none;
    border:1px solid #ddd;
  }

  .de-toolkit .checklist li{
    page-break-inside:avoid;
	break-inside: avoid;
  }

  .de-toolkit .check-content{
    break-inside: avoid;
  }

}



/* ========================================
   MOBILE
======================================== */

@media (max-width:720px){

  .de-toolkit .toolkit-card{
    padding:20px;
  }

  .de-toolkit .checklist li{
    gap:10px;
  }

  .de-toolkit .hero-grid{
    flex-direction:column;
  }

}

.tool-nav{
display:flex;
flex-wrap:wrap;
gap:10px 18px;
padding:10px 0 0;
margin:0 0 18px;
border-bottom:1px solid rgba(11,34,54,.12);
}

.tool-nav a{
font-family:Montserrat,sans-serif;
font-weight:500;
font-size:14px;
color:#1A357A;
text-decoration:none;
padding:8px 0 12px;
position:relative;
white-space:nowrap;
}

.tool-nav a.is-active{
color:#214196;
font-weight:600;
}

.tool-nav a.is-active::after{
content:"";
position:absolute;
left:0;
right:0;
bottom:-1px;
height:2px;
background:#A3862F;
border-radius:2px;
}

/* ============================================================
GLOBAL CARD SYSTEM
Used across calculators, FAQ, guides, reference pages
============================================================ */

.card{
  background:#ffffff;
  border:1px solid rgba(11,34,54,.12);
  border-radius:14px;
  padding:28px;
  box-shadow:0 10px 28px rgba(11,34,54,.08);
}

.card + .card{
  margin-top:24px;
}

.card h2{
  font-family:Montserrat,system-ui,sans-serif;
  font-weight:600;
  letter-spacing:-.02em;
  margin:2px 0 14px;
}

.card p{
  margin:0 0 12px;
}

/* ============================================================
HERO BOX / STRATEGIC INSIGHT BOX
============================================================ */

.hero-box{
  background:#ffffff;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(11,34,54,.06);
  padding:18px;
  border-left:4px solid var(--de-violet);
  margin:14px 0;
}

.hero-box h3{
  font-family:Montserrat,sans-serif;
  font-weight:700;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--de-violet);
  margin:0 0 8px 0;
}

.hero-box p{
  margin:0;
  font-size:15px;
  color:#3a3a3a;
}
</style>



