@font-face {
    font-family: 'Inter';
    src: url('../font/inter-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font/inter-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font/inter-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-top: #0f172a;
    --bg-hdr: #f1f5f9;
    --txt-main: #0f172a;
    --btn-dk: #4338ca;
    --font: 'Inter', Arial, sans-serif;
    --trans: all 0.2s ease-in-out;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    font-family: var(--font);
    color: var(--txt-main);
    background: var(--bg-hdr);
    line-height: 1.6;
    letter-spacing: -0.011em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

a {
    text-decoration: none; color: inherit; transition: var(--trans);
}

ul {
    list-style: none;
}

.hdr {
    background: #0f172a;
    border-bottom: 1px solid #ffffff1a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.hdr-in {
    max-width: 1230px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hdr-l {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.nl {
    display: flex;
    gap: 2rem;
}

.nl li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e7e7e7;
    letter-spacing: -0.015em;
}

.nl li a:hover {
    opacity: 0.7;
}

.m-btn {
    display: none;
    background: none;
    border: none;
    color: var(--txt-main);
    cursor: pointer;
}

@media (max-width: 992px) {
  .hdr-l { gap: 1.5rem; }
  .nl { gap: 1rem; }
  .acts { gap: 1rem; }
}

@media (max-width: 768px) {
  .hdr-in { padding: 1rem 1.5rem; }
  .m-btn { display: block; }
  

.offcanvas-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
}
.offcanvas-overlay.active {
    display: block;
}


#mainNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-hdr);
    z-index: 999;
    transition: var(--trans);
    padding: 2rem 2rem 2rem;
    overflow-y: auto;
    box-shadow: -6px 0 24px rgba(0,0,0,0.12);
    flex-direction: column;
    gap: 1.5rem;
    display: flex;
}
#mainNav.active {
    right: 0;
}


.acts {display: none;}
  .nl { flex-direction: column; align-items: flex-start; width: 100%; }
}

.ftr {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.ftr-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.ftr-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.ftr-brand {
    max-width: 400px;
}

.ftr-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}
@media (min-width:800px) {
    .ftr-desc {
    padding-left:7px
}
}

.ftr-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.cpy {
    font-size: 0.85rem;
    color: #94a3b8;
}

.ftr-legal {
    display: list-item;
    list-style: none;
}

.ftr-legal li a {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.ftr-legal li {
    margin-top:10px
}

.ftr-legal li a:hover {
    color: var(--txt-main);
}

.ftr-cat {
    display: list-item;
    list-style: none;
}

.ftr-cat li a {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.ftr-cat li {
    margin-top:10px
}

.ftr-cat li a:hover {
    color: var(--txt-main);
}

@media (max-width: 768px) {
  .ftr { padding: 3rem 0 2rem; }
  .ftr-in { padding: 0 1.5rem; }
  
  .ftr-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  #mainNav li a {
    color:#0f172a
  }
  
  .ftr-cta {
    width: 100%; 
    max-width: 100%;
    padding: 2rem; 
  }
  
  .ftr-bot {
    flex-direction: column-reverse; 
    align-items: flex-start;
  }
  
  .ftr-legal {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
  }
    .ftr-cat {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
  }
}

.vl-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.vl-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
}

.vl-breadcrumb li a {
    color:#6e7786;
    text-decoration: none;
    transition: color .2s;
}


.vl-breadcrumb li.vl-breadcrumb__current {
    color:#6e7786;
    font-weight: 500;
}

.vl-breadcrumb__sep {
    color: #cbd5e1;
    display: inline-block;
}
.hdr-in img {
	height:24px!important
}
.ftr-brand img {
	margin:20px 0;
	width:180px
}
.tax-hero__wrap .vl-breadcrumb .vl-breadcrumb__current {
	color: #6e7786
}
.lg {
    display: flex;
    align-items: center;
}
.hdr-r {
    display: flex;
    align-items: center;
    gap: 4px;
}






   /* ============================================================
   PAGE — Static Page Template | START
   ============================================================ */

#pg-main {
    background: #f1f5f9;
    min-height: 100vh;
}

#pg-hero {
    background: #0f172a;
    padding: 32px 0 40px;
}

#pg-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#pg-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

#pg-content {
    padding: 40px 0 64px;
}

#pg-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 36px;
}

#pg-content-inner h2 {
    margin: 24px 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

#pg-content-inner h3 {
    margin: 24px 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

#pg-content-inner p {
    margin: 0 0 16px;
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}

#pg-content-inner p:last-child {
    margin-bottom: 0;
}

#pg-content-inner ul,
#pg-content-inner ol {
    margin: 0 0 16px;
    padding-left: 20px;
}

#pg-content-inner li {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 6px;
}

#pg-content-inner a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#pg-content-inner a:hover {
    color: #475569;
}

#pg-content-inner strong {
    font-weight: 700;
    color: #0f172a;
}

#pg-content-inner hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 28px 0;
}

#pg-content-inner table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    margin-bottom: 16px;
}

#pg-content-inner th {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    font-weight: 700;
    color: #0f172a;
    text-align: left;
}

#pg-content-inner td {
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    color: #475569;
}
.blg-bread-container .vl-breadcrumb .vl-breadcrumb__current {
	color:#94a3b8
}
.blg-bread-container .vl-breadcrumb li a {
	color:#94a3b8
}

@media (max-width: 640px) {
    #pg-hero {
        padding: 24px 0 32px;
    }

    #pg-hero-inner {
        padding: 0 16px;
        gap: 16px;
    }

    #pg-title {
        font-size: 22px;
    }

    #pg-content {
        padding: 24px 0 48px;
    }

    #pg-content-inner {
        margin: 10px 10px;
        padding:32px 20px
    }

}

/* ============================================================
   PAGE — Static Page Template | END
   ============================================================ */
















   /* ============================================================
   STATE SEARCH | START
   ============================================================ */

.srch {
    position: relative;
    display: flex;
    align-items: center;
}

/* ── Desktop box ── */
.srch-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 10px;
    padding: 0 12px;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    width: 220px;
}

.srch-box:focus-within {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.32);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

.srch-ic {
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
    pointer-events: none;
}

.srch-inp {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.8125rem;
    font-family: inherit;
    line-height: 1;
    padding: 9px 0;
    width: 100%;
    min-width: 0;
}

.srch-inp::placeholder {
    color: rgba(255,255,255,0.38);
}

.srch-clear {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.15s;
}

.srch-clear:hover { color: rgba(255,255,255,0.8); }

/* ── Dropdown results ── */
.srch-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    z-index: 9999;
    min-width: 260px;
}

.srch-results[hidden] { display: none; }

.srch-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    text-decoration: none;
    color: rgba(255,255,255,0.82);
    font-size: 0.875rem;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.srch-result-item:last-child { border-bottom: none; }

.srch-result-item:hover,
.srch-result-item:focus {
    background: rgba(255,255,255,0.07);
    color: #fff;
    outline: none;
}

.srch-result-item svg {
    flex-shrink: 0;
    color: rgba(255,255,255,0.3);
}

.srch-empty {
    padding: 20px 14px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8125rem;
    text-align: center;
}

.srch-spinner {
    display: flex;
    justify-content: center;
    padding: 16px;
}

.srch-spinner::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.15);
    border-top-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: srch-spin 0.6s linear infinite;
}

@keyframes srch-spin { to { transform: rotate(360deg); } }

/* ── Mobile trigger icon ── */
.srch-mob-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255);
    padding: 6px;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

.srch-mob-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ── Mobile offcanvas panel ── */
.srch-mob-panel {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
}

.srch-mob-panel[hidden] { display: none; }

.srch-mob-inner {
    background: #12121f;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 16px 12px;
}

.srch-mob-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 10px;
    padding: 0 14px;
    margin-bottom: 0;
}

.srch-mob-row:focus-within {
    border-color: rgba(255,255,255,0.28);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}

.srch-mob-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    padding: 4px;
    flex-shrink: 0;
    transition: color 0.15s;
}

.srch-mob-close:hover { color: #fff; }

.srch-results--mob {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    margin-top: 8px;
    max-height: 60vh;
    overflow-y: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .srch-box   { display: none; }
    .srch-mob-btn { display: flex; }
}

/* ============================================================
   STATE SEARCH | END
   ============================================================ */

















/* ============================================================
   HOMEPAGE HERO — Divorce Front Page | START
   ============================================================ */

#dfp-main {
    background: #0f172a;
}

.dfp-hero {
    background: #0f172a;
    padding: 72px 24px 64px;
}

.dfp-hero__wrap {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.dfp-hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.dfp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a5b4fc;
    background: rgba(79, 70, 229, 0.14);
    border: 1px solid rgba(79, 70, 229, 0.28);
    border-radius: 999px;
    padding: 5px 12px;
}

.dfp-hero__h1 {
    margin: 0;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.dfp-hero__sub {
    margin: 0;
    max-width: 560px;
    font-size: 14.5px;
    font-weight: 400;
    color: #94a3b8;
    line-height: 1.65;
}

.dfp-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.dfp-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    padding: 11px 22px;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.dfp-hero__btn--primary {
    background: #4f46e5;
    color: #ffffff;
    border: 1px solid #4f46e5;
}

.dfp-hero__btn--primary:hover {
    background: #4338ca;
    border-color: #4338ca;
}

.dfp-hero__btn--ghost {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #1e293b;
}

.dfp-hero__btn--ghost:hover {
    color: #ffffff;
    border-color: #475569;
}

.dfp-hero__note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    margin: 0;
    max-width: 520px;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.5;
    text-align: left;
}

.dfp-hero__note svg {
    flex-shrink: 0;
    color: #475569;
    margin-top: 1px;
}

.dfp-hero__stats {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    margin-top: 4px;
}

.dfp-hero__stat {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.dfp-hero__stat-num {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.dfp-hero__stat-label {
    font-size: 11.5px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.35;
    text-align: center;
}

.dfp-hero__stat-sep {
    flex-shrink: 0;
    width: 1px;
    height: 28px;
    background: #1e293b;
}

@media (max-width: 640px) {
    .dfp-hero {
        padding: 48px 16px 40px;
    }

    .dfp-hero__wrap {
        gap: 22px;
    }

    .dfp-hero__h1 {
        font-size: 20px;
    }

    .dfp-hero__sub {
        font-size: 13.5px;
        max-width: 300px;
    }

    .dfp-hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .dfp-hero__btn {
        width: 100%;
    }

    .dfp-hero__stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 0;
        justify-items: center;
    }

    .dfp-hero__stat-sep {
        display: none;
    }

    .dfp-hero__stat-label {
        font-size: 11px;
    }
}

/* ============================================================
   HOMEPAGE HERO — Divorce Front Page | END
   ============================================================ */















     /* ============================================================
     E-E-A-T TRUST BAND — Credibility & Transparency | START
     ============================================================ */

  .dfp-eeat {
      background: #0f172a;
      border-top: 1px solid #1e293b;
      border-bottom: 1px solid #1e293b;
      padding: 12px 24px;
  }

  .dfp-eeat__wrap {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px 24px;
      flex-wrap: wrap;
  }

  .dfp-eeat__trust {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
  }

  .dfp-eeat__item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11.5px;
      font-weight: 500;
      color: #94a3b8;
      line-height: 1.4;
      white-space: nowrap;
  }

  .dfp-eeat__item svg {
      flex-shrink: 0;
      color: #818cf8;
  }

  .dfp-eeat__item strong {
      font-weight: 600;
      color: #cbd5e1;
  }

  .dfp-eeat__sep {
      flex-shrink: 0;
      width: 1px;
      height: 12px;
      background: #1e293b;
  }

  .dfp-eeat__disclaim {
      display: flex;
      align-items: center;
      gap: 9px;
      flex-wrap: wrap;
      font-size: 11.5px;
      font-weight: 500;
      color: #64748b;
      line-height: 1.4;
  }

  .dfp-eeat__dot {
      color: #1e293b;
  }

  .dfp-eeat__link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: #a5b4fc;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.15s ease;
  }

  .dfp-eeat__link:hover {
      color: #ffffff;
  }
    .dfp-eeat__howlink {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: #4f46e5;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.15s ease;
  }

  .dfp-eeat__howlink:hover {
      color: #4f46e5c2;
  }

  @media (max-width: 768px) {
      .dfp-eeat__wrap {
          flex-direction: column;
          align-items: flex-start;
          gap: 8px;
      }
  }

  @media (max-width: 640px) {
      .dfp-eeat {
          padding: 12px 16px;
      }

      .dfp-eeat__item {
          white-space: normal;
      }

      .dfp-eeat__sep {
          display: none;
      }
  }

  /* ============================================================
     E-E-A-T TRUST BAND — Credibility & Transparency | END
     ============================================================ */











     /* ============================================================
   WHO WE ARE — Mission & Team | START
   ============================================================ */

.dfp-who {
    background: #f1f5f9;
    padding: 64px 24px 80px;
}

.dfp-who__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dfp-who__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto;
}

.dfp-who__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
    position: relative;
    margin: 0;
}

.dfp-who__eyebrow::before,
.dfp-who__eyebrow::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 1px;
    background: #cbd5e1;
    margin: 0 10px;
}

.dfp-who__lead {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.dfp-who__sub {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.dfp-who__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: stretch;
}

.dfp-who__member {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dfp-who__avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.dfp-who__member-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.dfp-who__name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.dfp-who__role {
    margin: 0;
    font-size: 11.5px;
    font-weight: 600;
    color: #4f46e5;
    line-height: 1.4;
}

.dfp-who__bio {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.dfp-who__process {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #0f172a;
    border-radius: 8px;
    padding: 14px 16px;
}

.dfp-who__process svg {
    flex-shrink: 0;
    color: #0f172a;
    margin-top: 1px;
}

.dfp-who__process-text {
    margin: 0;
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

.dfp-who__process-text strong {
    font-weight: 700;
    color: #0f172a;
}

.dfp-who__process-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.dfp-who__process-link:hover {
    color: #4338ca;
}

.dfp-who__process-link svg {
    color: inherit;
    margin: 0;
}

@media (max-width: 768px) {
    .dfp-who__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .dfp-who {
        padding: 40px 16px 56px;
    }

    .dfp-who__wrap {
        gap: 20px;
    }
}

/* ============================================================
   WHO WE ARE — Mission & Team | END
   ============================================================ */













   /* ============================================================
   WHAT THIS SITE CONTAINS — Article + Table of Contents | START
   ============================================================ */

.dfp-what {
    background: #f1f5f9;
    padding: 64px 24px 80px;
}

.dfp-what__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

.dfp-what__main {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}


.dfp-what__title {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.dfp-what__meta {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dfp-what__meta::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4f46e5;
}


.dfp-what__block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dfp-what__h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.01em;
    scroll-margin-top: 90px;
}

.dfp-what__p {
    margin: 0;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.8;
}

.dfp-what__checklist {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dfp-what__cl-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.01em;
    scroll-margin-top: 90px;
}

.dfp-what__cl-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dfp-what__cl-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.dfp-what__cl-item svg {
    flex-shrink: 0;
    color: #4f46e5;
    margin-top: 3px;
}

.dfp-what__byline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.dfp-what__avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.dfp-what__byline-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.dfp-what__author {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.dfp-what__author a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.15s ease;
}

.dfp-what__author a:hover {
    color: #4f46e5;
}

.dfp-what__role {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.4;
}

.dfp-what__sep {
    flex-shrink: 0;
    width: 1px;
    height: 20px;
    background: #e2e8f0;
}

.dfp-what__link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s ease;
}

.dfp-what__link:hover {
    color: #4338ca;
}

.dfp-what__sources {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #0f172a;
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dfp-what__src-title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    scroll-margin-top: 90px;
}

.dfp-what__src-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dfp-what__src-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: #475569;
    line-height: 1.5;
}

.dfp-what__src-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #4f46e5;
    margin-top: 6px;
}

.dfp-what__src-note {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
}

  .dfp-what__toc {
      min-width: 0;
      align-self: stretch;
  }

.dfp-what__toc-card {
    position: sticky;
    top: 84px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dfp-what__toc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.dfp-what__toc-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.dfp-what__toc-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dfp-what__toc-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    line-height: 1.45;
    text-decoration: none;
    padding: 7px 8px;
    border-radius: 8px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dfp-what__toc-link:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.dfp-what__toc-num {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: #4f46e5;
    margin-top: 1px;
}

@media (max-width: 900px) {
    .dfp-what__wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dfp-what__toc {
        order: -1;
    }

    .dfp-what__toc-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .dfp-what {
        padding: 40px 16px 56px;
    }

    .dfp-what__main {
        padding: 20px 16px;
    }

    .dfp-what__title {
        font-size: 20px;
    }

    .dfp-what__checklist {
        padding: 20px 16px;
    }

    .dfp-what__cta {
        width: 100%;
    }
}

/* ============================================================
   WHAT THIS SITE CONTAINS — Article + Table of Contents | END
   ============================================================ */














/* ============================================================
   FAQ — Accordion | START
   ============================================================ */

.dfp-faq {
    background: #f1f5f9;
    padding: 0 24px 80px;
}

.dfp-faq__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dfp-faq__intro {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto;
}

.dfp-faq__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
    position: relative;
    margin: 0;
}

.dfp-faq__eyebrow::before,
.dfp-faq__eyebrow::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 1px;
    background: #cbd5e1;
    margin: 0 10px;
}

.dfp-faq__sub {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.dfp-faq__byline {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
}

.dfp-faq__byline a {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.dfp-faq__byline a:hover {
    color: #4338ca;
}

.dfp-faq__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
    align-items: start;
}

.dfp-faq__item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.dfp-faq__item.is-open {
    border-color: #c7d2fe;
}

.dfp-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.dfp-faq__q-num {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: #4f46e5;
    background: #eef2ff;
    border-radius: 6px;
    padding: 3px 7px;
}

.dfp-faq__q-text {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.dfp-faq__q-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #64748b;
    transition: transform 0.2s ease, background-color 0.15s ease, color 0.15s ease;
}

.dfp-faq__item.is-open .dfp-faq__q-icon {
    transform: rotate(45deg);
    background: #0f172a;
    color: #ffffff;
}

.dfp-faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.dfp-faq__item.is-open .dfp-faq__a {
    grid-template-rows: 1fr;
}

.dfp-faq__a-inner {
    overflow: hidden;
}

.dfp-faq__a-text {
    margin: 0;
    padding: 12px 18px 18px 48px;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
}

.dfp-faq__lead {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .dfp-faq__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dfp-faq {
        padding: 0 16px 56px;
    }

    .dfp-faq__wrap {
        gap: 20px;
    }

    .dfp-faq__q {
        padding: 14px 14px;
    }

    .dfp-faq__a-text {
        padding: 10px 14px 14px 46px;
    }
}

/* ============================================================
   FAQ — Accordion | END
   ============================================================ */



/* ============================================================
   FINAL CTA — Thin Strip | START
   ============================================================ */

.dfp-final {
    background: #f1f5f9;
    padding: 0 24px 80px;
}

.dfp-final__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
}

.dfp-final__title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.5;
    flex: 1;
    min-width: 240px;
}

.dfp-final__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    background: #0f172a;
    color: #ffffff;
    border: 1px solid #0f172a;
    border-radius: 10px;
    padding: 11px 20px;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.dfp-final__btn:hover {
    background: #1e293b;
    border-color: #1e293b;
}

.dfp-final__btn svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .dfp-final {
        padding: 0 16px 56px;
    }

    .dfp-final__wrap {
        padding: 18px 16px;
        justify-content: center;
        text-align: center;
    }

    .dfp-final__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   FINAL CTA — Thin Strip | END
   ============================================================ */























/* ============================================================
   DIVORCE PAPERS HUB — Page Styles | START
   ============================================================ */

#dhp-main {
    background: #ffffff;
}

.dhp-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ============================================================
   HERO — Split Layout | START
   ============================================================ */

.dhp-hero {
    background: #ffffff;
    padding: 64px 0 80px;
}

.dhp-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.dhp-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.dhp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.dhp-breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.15s ease;
}

.dhp-breadcrumb a:hover {
    color: #4f46e5;
}

.dhp-breadcrumb__sep {
    color: #cbd5e1;
    display: inline-block;
}

.dhp-breadcrumb__current {
    color: #94a3b8;
    font-weight: 500;
}

.dhp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4f46e5;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 999px;
    padding: 5px 12px;
}

.dhp-hero__eyebrow svg {
    flex-shrink: 0;
}

.dhp-hero__h1 {
    margin: 0;
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.dhp-hero__sub {
    margin: 0;
    max-width: 480px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

.dhp-hero__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.dhp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 6px 13px 6px 7px;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.dhp-pill:hover {
    border-color: #c7d2fe;
    background: #eef2ff;
    color: #4f46e5;
}

.dhp-pill__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4f46e5;
}

.dhp-hero__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.dhp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    padding: 12px 24px;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.dhp-btn--primary {
    background: #4f46e5;
    color: #ffffff;
    border: 1px solid #4f46e5;
}

.dhp-btn--primary:hover {
    background: #4338ca;
    border-color: #4338ca;
}

.dhp-btn--ghost {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.dhp-btn--ghost:hover {
    border-color: #4f46e5;
    color: #4f46e5;
}

.dhp-btn svg {
    flex-shrink: 0;
}

.dhp-hero__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

/* ── Visual: stacked documents ── */
.dhp-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dhp-stack {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 17 / 22;
}

.dhp-stack__doc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.dhp-stack__doc--back {
    transform: rotate(6deg);
    top: 18px;
    left: 26px;
    right: -26px;
    bottom: -18px;
    background: #eef2ff;
    border-color: #c7d2fe;
    z-index: 1;
}

.dhp-stack__doc--mid {
    transform: rotate(-4deg);
    top: 10px;
    left: -18px;
    right: 18px;
    bottom: -10px;
    background: #f8fafc;
    z-index: 2;
}

.dhp-stack__doc--front {
    z-index: 3;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}

.dhp-stack__doc--front img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}


@media (max-width: 900px) {
    .dhp-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dhp-hero__content {
        align-items: center;
        text-align: center;
    }

    .dhp-hero__sub {
        max-width: 100%;
    }

    .dhp-hero__badges {
        justify-content: center;
    }

    .dhp-hero__actions {
        justify-content: center;
    }

    .dhp-hero__badges {
        justify-content: center;
    }

    .dhp-hero__visual {
        order: -1;
    }

    .dhp-stack {
        max-width: 280px;
    }
}

@media (max-width: 640px) {
    .dhp-hero {
        padding: 40px 0 56px;
    }

    .dhp-hero__h1 {
        font-size: 26px;
    }

    .dhp-hero__sub {
        font-size: 14px;
    }

    .dhp-hero__actions {
        width: 100%;
        max-width: 300px;
        flex-direction: column;
    }

    .dhp-btn {
        width: 100%;
    }

    .dhp-pill {
        padding: 5px 11px 5px 6px;
    }

    .dhp-stack {
        max-width: 240px;
    }
}

/* ============================================================
   HERO — Split Layout | END
   ============================================================ */



/* ============================================================
   E-E-A-T TRUST BAND — Credibility & Transparency | START
   ============================================================ */

@media (min-width:799px) {
    .dhp-eeat {
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    padding: 14px 24px;
}
}
@media (max-width:800px) {
.dhp-eeat {
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    padding: 14px 24px;
}
}

.dhp-eeat__wrap {
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.dhp-eeat__trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dhp-eeat__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.4;
}

.dhp-eeat__item svg {
    flex-shrink: 0;
    color: #4f46e5;
}

.dhp-eeat__sep {
    flex-shrink: 0;
    width: 1px;
    height: 14px;
    background: #e2e8f0;
}

.dhp-eeat__disclaim {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.4;
}

.dhp-eeat__dot {
    color: #cbd5e1;
}

.dhp-eeat__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.dhp-eeat__link:hover {
    color: #4338ca;
}

.dhp-eeat__link svg {
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .dhp-eeat__wrap {
        justify-content: center;
        text-align: center;
    }

    .dhp-eeat__trust,
    .dhp-eeat__disclaim {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .dhp-eeat {
        padding: 12px 16px;
    }

    .dhp-eeat__sep {
        display: none;
    }

    .dhp-eeat__item,
    .dhp-eeat__disclaim {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   E-E-A-T TRUST BAND — Credibility & Transparency | END
   ============================================================ */



/* ============================================================
   GENERATOR — Build Your Packet | START
   ============================================================ */

.dhp-gen {
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    padding: 120px 0 80px;
}
.single-divorce_papers .dhp-gen {
	padding:50px 0 80px
}


/* Make [hidden] actually hide inside flex/grid containers. */
.dhp-gen [hidden] {
    display: none !important;
}

.dhp-gen__head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto 32px;
}

.dhp-gen__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4f46e5;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 999px;
    padding: 6px 14px;
}

.dhp-gen__badge svg {
    flex-shrink: 0;
}

.dhp-gen__title {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.025em;
}
@media (max-width:800px) {
    .single-divorce_papers .dhp-gen__title  
{  font-size:17px }
}
@media (min-width:799px) {
    .single-divorce_papers .dhp-gen__title  
{  font-size:25px }
}

.dhp-gen__sub {
    margin: 0;
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
}

.dhp-gen__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.dhp-gen__left {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dhp-gen__progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dhp-gen__progress-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.dhp-gen__progress-bar {
    height: 4px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
}

.dhp-gen__progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: #4f46e5;
    border-radius: 999px;
    transition: width 0.3s ease;
}

.dhp-gen__types {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dhp-gen__type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.dhp-gen__type:hover {
    border-color: #c7d2fe;
    background: #eef2ff;
}

.dhp-gen__type-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.dhp-gen__type-label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.dhp-gen__type-desc {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
}

.dhp-gen__type-arrow {
    flex-shrink: 0;
    color: #cbd5e1;
}

.dhp-gen__type:hover .dhp-gen__type-arrow {
    color: #4f46e5;
}

.dhp-gen__questions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dhp-gen__q-hint {
    margin: 0;
    font-size: 11.5px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.04em;
}

.dhp-gen__q-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dhp-gen__q {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dhp-gen__q-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}

.dhp-gen__q-input {
    font-family: inherit;
    font-size: 13.5px;
    color: #0f172a;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 13px;
    outline: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.dhp-gen__q-input:focus {
    border-color: #4f46e5;
    background: #ffffff;
}

.dhp-gen__q-input::placeholder {
    color: #94a3b8;
}

.dhp-gen__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.dhp-gen__btn {
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
    padding: 10px 20px;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.dhp-gen__btn--back {
    background: #ffffff;
    color: #64748b;
    border: 1.5px solid #e2e8f0;
}

.dhp-gen__btn--back:hover {
    border-color: #0f172a;
    color: #0f172a;
}

.dhp-gen__btn--next {
    background: #0f172a;
    color: #ffffff;
    border: 1.5px solid #0f172a;
}

.dhp-gen__btn--next:hover {
    background: #1e293b;
    border-color: #1e293b;
}

.dhp-gen__right {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.dhp-gen__preview {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    min-height: 420px;
    max-height: 560px;
    overflow-y: auto;
}

.dhp-gen__preview-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 420px;
    padding: 40px 24px;
    text-align: center;
    color: #cbd5e1;
}

.dhp-gen__preview-empty svg {
    flex-shrink: 0;
}

.dhp-gen__preview-empty p {
    margin: 0;
    max-width: 260px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

.dhp-gen__doc {
    padding: 32px 36px;
    font-family: Georgia,serif;
    font-size: 13.5px;
    color: #1e293b;
    line-height: 1.75;
}

.dhp-gen__doc h3 {
    font-family: Georgia,serif;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 18px 0 6px;
}

.dhp-gen__doc p {
    margin: 0 0 10px;
}

.dhp-gen__doc strong {
    color: #0f172a;
}

.dhp-gen__blank {
    color: #4f46e5;
    border-bottom: 1px solid #c7d2fe;
}

.dhp-gen__trust {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.5;
}

.dhp-gen__trust svg {
    flex-shrink: 0;
    color: #4f46e5;
}

.dhp-gen__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dhp-gen__act {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    background: #ffffff;
    color: #0f172a;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 9px 14px;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.dhp-gen__act:hover {
    border-color: #0f172a;
}

.dhp-gen__act svg {
    flex-shrink: 0;
}

.dhp-gen__act--primary {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.dhp-gen__act--primary:hover {
    background: #1e293b;
    border-color: #1e293b;
}

.dhp-gen__act--ghost {
    margin-left: 0;
}

/* ── Modal ── */
.dhp-gen__modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.dhp-gen__modal.is-open {
    display: flex;
}

.dhp-gen__modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
}

.dhp-gen__modal-box {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    width: 92%;
    max-width: 760px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
}

.dhp-gen__modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.dhp-gen__modal-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.dhp-gen__modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    display: flex;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.15s ease;
}

.dhp-gen__modal-close:hover {
    color: #0f172a;
}

.dhp-gen__modal-body {
    overflow-y: auto;
    padding: 24px;
}

.dhp-gen__modal-body .dhp-gen__doc {
    padding: 0;
}

@media (max-width: 900px) {
    .dhp-gen__body {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dhp-gen__right {
        position: static;
    }
}

@media (max-width: 640px) {
    .dhp-gen {
        padding: 40px 0 56px;
    }

    .dhp-gen__left {
        padding: 20px 16px;
    }

    .dhp-gen__doc {
        padding: 20px 16px;
    }

    .dhp-gen__act--ghost {
        margin-left: 0;
    }

    .dhp-gen__actions {
        gap: 6px;
    }
}

/* ============================================================
   GENERATOR — Build Your Packet | END
   ============================================================ */



/* ============================================================
   HOW IT WORKS — Floating Steps Card | START
   ============================================================ */

.dhp-steps {
    position: relative;
    background: transparent;
    padding: 0;
    margin-top: 30px;
    z-index: 2;
}

.dhp-steps__card {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width:800px) {
    .dhp-steps__card {
    margin-bottom:-60px
}
}
@media (max-width:800px) {
.dhp-steps {
    margin-bottom: 30px;
}
}

.dhp-steps__head {
    display: flex;
    justify-content: center;
    padding-bottom: 6px;
}

.dhp-steps__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
    white-space: nowrap;
}

.dhp-steps__label::before,
.dhp-steps__label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #e2e8f0;
}

.dhp-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-width: 0;
}

.dhp-steps__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.dhp-steps__item + .dhp-steps__item::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 14px;
    width: 1px;
    height: 32px;
    background: #f1f5f9;
}

.dhp-steps__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #eef2ff;
    color: #4f46e5;
}

.dhp-steps__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.dhp-steps__title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.dhp-steps__desc {
    margin: 0;
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .dhp-steps__list {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .dhp-steps__item + .dhp-steps__item::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .dhp-steps__card {
        padding: 18px 16px;
    }
}

/* ============================================================
   HOW IT WORKS — Floating Steps Card | END
   ============================================================ */



/* ============================================================
   SECTION HEADING — Shared (states, FAQ) | START
   ============================================================ */

.dhp-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 640px;
    margin: 0 auto 32px;
}

.dhp-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4f46e5;
    position: relative;
    margin: 0;
}

.dhp-eyebrow::before,
.dhp-eyebrow::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 1px;
    background: #c7d2fe;
    margin: 0 10px;
}

.dhp-head__title {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.dhp-head__sub {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.dhp-faq__byline {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
}

/* ============================================================
   SECTION HEADING — Shared (states, FAQ) | END
   ============================================================ */



/* ============================================================
   GENERATOR — Build Your Packet | START
   ============================================================ */



/* ============================================================
   STATE LIST — All 50 States | START
   ============================================================ */

.dhp-states {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 64px 0 80px;
}

.dhp-states__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.dhp-states__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.dhp-states__link:hover {
    border-color: #4f46e5;
    background: #eef2ff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.12);
    transform: translateY(-2px);
}

.dhp-states__badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dhp-states__link:hover .dhp-states__badge {
    background: #4f46e5;
    color: #ffffff;
}

.dhp-states__name {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}

.dhp-states__arrow {
    flex-shrink: 0;
    color: #cbd5e1;
    transition: color 0.15s ease, transform 0.15s ease;
}

.dhp-states__link:hover .dhp-states__arrow {
    color: #4f46e5;
    transform: translateX(2px);
}

.dhp-states__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.6;
}

.dhp-states__empty svg {
    color: #cbd5e1;
}

.dhp-states__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 16px 0 0;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
}

.dhp-states__note svg {
    flex-shrink: 0;
    color: #64748b;
}

@media (max-width: 900px) {
    .dhp-states__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 640px) {
    .dhp-states {
        padding: 40px 0 56px;
    }

    .dhp-states__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   STATE LIST — All 50 States | END
   ============================================================ */



/* ============================================================
   SEO CONTENT — Article + TOC | START
   ============================================================ */

.dhp-seo {
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    padding: 64px 0 80px;
}

.dhp-seo__inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

.dhp-seo__main {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}


.dhp-seo__title {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.dhp-seo__meta {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dhp-seo__meta::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4f46e5;
}

/* ── Author byline ── */
.dhp-seo__byline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.dhp-seo__avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.dhp-seo__byline-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.dhp-seo__author {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.dhp-seo__author a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.15s ease;
}

.dhp-seo__author a:hover {
    color: #4f46e5;
}

.dhp-seo__role {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.4;
}

.dhp-seo__sep {
    flex-shrink: 0;
    width: 1px;
    height: 20px;
    background: #e2e8f0;
}

/* ── Sources block ── */
.dhp-seo__sources {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #0f172a;
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dhp-seo__src-title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    scroll-margin-top: 90px;
}

.dhp-seo__src-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dhp-seo__src-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: #475569;
    line-height: 1.5;
}

.dhp-seo__src-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #4f46e5;
    margin-top: 6px;
}

.dhp-seo__src-note {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
}

.dhp-seo__src-link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.dhp-seo__src-link:hover {
    color: #4338ca;
}

.dhp-seo__block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dhp-seo__h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.01em;
    scroll-margin-top: 90px;
}

.dhp-seo__p {
    margin: 0;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.8;
}

.dhp-seo__toc {
    min-width: 0;
}

.dhp-seo__toc-card {
    position: sticky;
    top: 88px;
    align-self: start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dhp-seo__toc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.dhp-seo__toc-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.dhp-seo__toc-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dhp-seo__toc-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    line-height: 1.45;
    text-decoration: none;
    padding: 7px 8px;
    border-radius: 8px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dhp-seo__toc-link:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.dhp-seo__toc-num {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: #4f46e5;
    margin-top: 1px;
}

@media (max-width: 900px) {
    .dhp-seo__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dhp-seo__toc {
        order: -1;
    }

    .dhp-seo__toc-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .dhp-seo {
        padding: 40px 0 56px;
    }

    .dhp-seo__main {
        padding: 20px 16px;
    }

    .dhp-seo__title {
        font-size: 20px;
    }
}

/* ============================================================
   SEO CONTENT — Article + TOC | END
   ============================================================ */



/* ============================================================
   FAQ — Accordion | START
   ============================================================ */

.dhp-faq {
    background: #f8fafc;
    padding: 50px 0 80px;
}

.dhp-faq__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
    align-items: start;
}

.dhp-faq__item {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.dhp-faq__item.is-open {
    border-color: #c7d2fe;
}

.dhp-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.dhp-faq__q-num {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: #4f46e5;
    background: #eef2ff;
    border-radius: 6px;
    padding: 3px 7px;
}

.dhp-faq__q-text {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.dhp-faq__q-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #64748b;
    transition: transform 0.2s ease, background-color 0.15s ease, color 0.15s ease;
}

.dhp-faq__item.is-open .dhp-faq__q-icon {
    transform: rotate(45deg);
    background: #0f172a;
    color: #ffffff;
}

.dhp-faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.dhp-faq__item.is-open .dhp-faq__a {
    grid-template-rows: 1fr;
}

.dhp-faq__a-inner {
    overflow: hidden;
}

.dhp-faq__a-text {
    margin: 0;
    padding: 12px 18px 18px 48px;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
}

@media (max-width: 768px) {
    .dhp-faq__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dhp-faq {
        padding: 40px 0 56px;
    }

    .dhp-faq__q {
        padding: 14px 14px;
    }

    .dhp-faq__a-text {
        padding: 10px 14px 14px 46px;
    }
}

/* ============================================================
   FAQ — Accordion | END
   ============================================================ */



/* ============================================================
   DIVORCE PAPERS HUB — Page Styles | END
   ============================================================ */
































   










   /* ============================================================
   STATE PAGE — Main content (stp- prefix)
   Layout reuses .dhp-seo__inner (grid) + .dhp-seo__toc-card (sticky) from mevcut.css.
   Each section is its own card — no giant single container.
   ============================================================ */

.stp-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Hero pills: reduce weight/spacing (override mevcut.css) ── */
.dhp-hero .dhp-pill {
    font-weight: 400;
    letter-spacing: 0;
}

/* ── Byline band (team, side by side) ── */
.stp-byline {
    display: flex;
    align-items: center;
    gap: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
}

.stp-byline__member {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.stp-byline__member + .stp-byline__member {
    border-left: 1px solid #e2e8f0;
    padding-left: 14px;
}

.stp-byline__avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.stp-byline__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.stp-byline__name {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.stp-byline__name a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.15s ease;
}

.stp-byline__name a:hover {
    color: #4f46e5;
}

.stp-byline__role {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .stp-byline {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .stp-byline__member + .stp-byline__member {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding-left: 0;
        padding-top: 10px;
    }
}

/* ── Shared eyebrow ── */
.stp-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8f8f8f;
    position: relative;
    margin: 0;
}

.stp-eyebrow::before,
.stp-eyebrow::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 1px;
    background: #8f8f8f;
    margin: 0 8px;
}

/* ============================================================
   AT A GLANCE — Distinct dark panel | START
   ============================================================ */

.stp-glance {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-margin-top: 90px;
}

.stp-glance__title {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.stp-glance__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.stp-glance__cell {
    background: #fdfeff;
    border: 1px solid #a29cff;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.stp-glance__cell:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.stp-glance__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    flex-shrink: 0;
}

.stp-glance__value {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    text-align: right;
}

/* ============================================================
   AT A GLANCE — Distinct dark panel | END
   ============================================================ */

/* ============================================================
   WHITE PANEL — Overview + FAQ cards | START
   ============================================================ */

.stp-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-margin-top: 90px;
}

.stp-panel__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.stp-panel__sub {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* ── Overview body ── */
.stp-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stp-body p {
    margin: 0;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.8;
}

.stp-body h1,
.stp-body h2,
.stp-body h3 {
    margin: 12px 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.stp-body ul,
.stp-body ol {
    margin: 0 0 12px;
    padding-left: 20px;
}

.stp-body li {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 4px;
}

.stp-body a {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.stp-body a:hover {
    color: #4338ca;
}

/* ── Compact source row (inside overview card) ── */
.stp-source {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 9px 12px;
}

.stp-source svg {
    flex-shrink: 0;
    color: #64748b;
}

.stp-source__label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.stp-source__link {
    font-size: 12.5px;
    font-weight: 600;
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.15s ease;
}

.stp-source__link:hover {
    color: #4338ca;
}

/* ============================================================
   WHITE PANEL — Overview + FAQ cards | END
   ============================================================ */

/* ============================================================
   STATE FAQ — Inside white panel | START
   ============================================================ */

.stp-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stp-faq__item {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.stp-faq__item.is-open {
    border-color: #c7d2fe;
}

.stp-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.stp-faq__q-num {
    flex-shrink: 0;
    font-size: 10.5px;
    font-weight: 700;
    color: #4f46e5;
    background: #eef2ff;
    border-radius: 6px;
    padding: 2px 6px;
}

.stp-faq__q-text {
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.stp-faq__q-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #ffffff;
    color: #64748b;
    transition: transform 0.2s ease, background-color 0.15s ease, color 0.15s ease;
}

.stp-faq__item.is-open .stp-faq__q-icon {
    transform: rotate(45deg);
    background: #0f172a;
    color: #ffffff;
}

.stp-faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.stp-faq__item.is-open .stp-faq__a {
    grid-template-rows: 1fr;
}

.stp-faq__a-inner {
    overflow: hidden;
}

.stp-faq__a-text {
    margin: 0;
    padding: 8px 14px 12px 40px;
    font-size: 12.5px;
    color: #475569;
    line-height: 1.7;
    border-top: 1px solid #eef2f7;
}

/* ============================================================
   STATE FAQ — Inside white panel | END
   ============================================================ */

/* ── Note line (shared) ── */
.stp-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 0;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.stp-note svg {
    flex-shrink: 0;
    color: #4f46e5;
    margin-top: 1px;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .stp-main {
        gap: 12px;
    }

    .stp-glance {
        padding: 18px 16px;
    }

    .stp-glance__grid {
        grid-template-columns: 1fr;
    }

    .stp-panel {
        padding: 16px;
    }
}

/* ── Mobile: author band before TOC ──
   .dhp-seo__toc already gets order:-1 from mevcut.css at ≤900px.
   Unwrap .stp-main so its children reorder inside the grid. */
@media (max-width: 900px) {
    .stp-main {
        display: contents;
    }

    .stp-byline {
        order: -2;
    }

    .stp-glance,
    .stp-panel {
        order: 0;
    }
}















/* ============================================================
   CONTACT FORM  — CF7FORM  | START
   ============================================================ */
.cf7-wrap {
    max-width: 600px;
}

.cf7-field {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cf7-label {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    font-family: inherit;
}

.cf7-input,
.cf7-select,
.cf7-textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.15s;
    font-family: inherit;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.cf7-input:focus,
.cf7-select:focus,
.cf7-textarea:focus {
    border-color: #0f172a;
}

.cf7-input::placeholder,
.cf7-textarea::placeholder {
    color: #94a3b8;
}

.cf7-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.cf7-textarea {
    min-height: 140px;
    resize: vertical;
}

.cf7-submit {
    margin-top: 4px;
}

.cf7-btn {
    display: inline-block;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #0f172a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.15s;
    font-family: inherit;
}

.cf7-btn:hover {
    opacity: 0.8;
}

.cf7-wrap .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #dc2626;
    margin-top: 4px;
}

.cf7-wrap .wpcf7-response-output {
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}
/* ============================================================
   CONTACT FORM  — CF7FORM  | END
   ============================================================ */
