/* home */
/* Hero full-screen on desktop, no top/side white space */
@media screen and (min-width: 993px) {
    .home_general_firts_section.full_wrapper {
        min-height: 100vh;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: none;
    }
    .home_general_firts_section .home_general_block {
        min-height: 100vh;
        margin: 0;
        padding: 0 0 64px 0;
        padding-top: 100px; /* clear fixed header */
        max-height: none;
        justify-content: center;
    }
    .home_general_firts_section .home_block.wrapper {
        padding-left: 48px;
        padding-right: 48px;
        max-width: 1620px;
    }
    .home_general_firts_section .home_general_img {
        width: 100%;
        left: 0;
        right: 0;
    }
}
.home_general_block{
    /* height: 100vh; */
    min-height: fit-content;
    padding: 100px 0 64px 0;
    position: relative;
    margin-top: 10px;
    max-height: 1000px;
    justify-content: center;
}
.home_general_img{
    width: 99%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    overflow: hidden;
    isolation: isolate;
}
.home_general_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Frosted overlay on hero photo — same blur strength as .page-home header */
.home_general_img::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.32) 0%,
        rgba(15, 23, 42, 0.22) 45%,
        rgba(15, 23, 42, 0.48) 100%
    );
    backdrop-filter: blur(10px) saturate(1.05);
    -webkit-backdrop-filter: blur(10px) saturate(1.05);
}
.home_first_blvk{
    gap: 20px;
    align-items: stretch;
}
.title_info_blck{
    flex-direction: column;
    gap: 14px;
    align-items: start;
    /* max-width: 420px; */
    max-width: 545px;
}
.title_info_subtitle{
    color: white;
    margin-bottom: auto;
    text-align: justify;
    font-size: 18px;
    text-shadow: 0 0 3px black;
}
.note-span {
  display: inline-block;
  padding: 5px 10px;
  background-color: #fff9a7; /* light yellow */
  border-left: 4px solid #f1c40f; /* accent line */
  border-radius: 4px;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
  font-size: 14px;
  line-height: 1.4;
}
.home_block, .home_first_blvk{
    height: 100%;
}
.home_first_blvk .general_title{
    margin-bottom: 0;
    /* margin-bottom: auto; */
}
.app_form {
    position: relative;
    max-width: 508px;
    width: 100%;
    justify-content: start;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    padding: 32px 36px 36px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(
        165deg,
        rgba(15, 23, 42, 0.78) 0%,
        rgba(15, 118, 110, 0.42) 52%,
        rgba(20, 184, 166, 0.28) 100%
    );
    backdrop-filter: blur(20px) saturate(1.15);
    -webkit-backdrop-filter: blur(20px) saturate(1.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 1px 0 rgba(255, 255, 255, 0.12) inset;
}
.app_form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(220px, 55%);
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--brandGrayBold),
        var(--brandGrayLight),
        #5eead4,
        var(--brandGrayLight),
        transparent
    );
    pointer-events: none;
}
.vector_back{
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.app_title{
    font-size: var(--twofour);
    color: var(--white);
    max-width: 322px;
    font-family: 'Inter-Bold';
}
.app_descrip{
    margin-top: 4px;
    margin-bottom: 22px;
    max-width: none;
    align-self: stretch;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Inter-SemiBold', 'Inter', system-ui, sans-serif;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.app_form .inps_{
    width: 100%;
    align-self: stretch;
    color: var(--white);
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.9375rem;
    line-height: 1.35;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.app_form .inps_::placeholder{
    color: rgba(255, 255, 255, 0.48);
}
.app_form .inps_:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(15, 23, 42, 0.52);
}
.app_form .inps_:focus {
    outline: none;
    border-color: var(--brandGrayLight);
    box-shadow:
        0 0 0 3px rgba(20, 184, 166, 0.28),
        0 1px 2px rgba(0, 0, 0, 0.12) inset;
}
.app_form select.inps_ {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.75)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.app_form select.inps_:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235eead4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.app_form option {
    background: #0f172a;
    color: #fff;
}

/* Home / service hero — effective date picker (label on top, full form width) */
.app_form .effective-date-field{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    gap: 8px;
}
.app_form .effective-date-field.lab_inps_blck{
    align-items: stretch;
}
.app_form .effective-date-field__label{
    display: block;
    width: 100%;
    font-family: 'Inter-Medium', 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.app_form .effective-date-field__req{
    color: rgba(252, 165, 165, 0.95);
}
.app_form .effective-date-input[type="date"]{
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 52px;
    box-sizing: border-box;
    padding: 14px 16px;
    border-radius: 10px;
    font-family: 'Inter-Medium', 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    color: #fff;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
    color-scheme: dark;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.app_form .effective-date-input[type="date"]:focus {
    outline: none;
    border-color: var(--brandGrayLight);
    box-shadow:
        0 0 0 3px rgba(20, 184, 166, 0.28),
        0 1px 2px rgba(0, 0, 0, 0.12) inset;
}
.app_form .effective-date-input[type="date"]::-webkit-calendar-picker-indicator{
    cursor: pointer;
    filter: invert(1);
    opacity: 0.85;
}
.app_form .effective-date-input[type="date"]:hover::-webkit-calendar-picker-indicator{
    opacity: 1;
}
.app_form .effective-date-input[type="date"]:disabled{
    opacity: 0.45;
    cursor: not-allowed;
}
.next_btn{
    gap: 10px;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    margin-top: 8px;
    padding: 16px 22px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-family: 'Inter-SemiBold', 'Inter', system-ui, sans-serif;
    letter-spacing: 0.02em;
    color: var(--white);
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brandGrayLight) 0%, var(--brandGray) 45%, var(--brandGrayBold) 100%);
    box-shadow:
        0 4px 16px rgba(15, 118, 110, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.next_btn svg path{
    stroke: var(--white);
}
.next_btn:hover{
    color: var(--white);
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow:
        0 8px 24px rgba(15, 118, 110, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.25) inset;
}
.next_btn:hover svg path{
    stroke: var(--white);
}
.next_btn:active {
    transform: translateY(0);
}
/* ===== Home About Us Section (professional, responsive) ===== */
.home_about_us_section {
    padding: 96px 0 112px;
}
.home_about_us_inner {
    margin-top: 24px;
    background: var(--brandGradientDeep);
    border-radius: var(--radius-xl);
    padding: 40px 40px 48px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
}
.home_about_us_header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.home_about_us_heading_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    max-width: 100%;
}
.home_about_us_title {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0;
}
.home_about_us_cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--sixteen);
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.home_about_us_cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
}
.home_about_us_cta svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}
.home_about_us_cta:hover svg {
    transform: translateX(4px);
}
.home_about_us_card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.home_about_us_intro {
    font-size: var(--eighteen);
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 28px;
}
.home_about_us_intro p {
    margin: 0 0 0.75em;
}
.home_about_us_intro p:last-child {
    margin-bottom: 0;
}
.home_about_us_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.home_about_us_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: var(--radius-md);
    border: 1px solid rgba(40, 40, 40, 0.08);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.home_about_us_item:hover {
    border-color: rgba(15, 118, 110, 0.2);
    box-shadow: var(--shadow-sm);
    background: rgba(15, 118, 110, 0.04);
}
.home_about_us_icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home_about_us_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home_about_us_item_title {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--eighteen);
    color: var(--black);
}
@media (min-width: 600px) {
    .home_about_us_list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .home_about_us_inner {
        padding: 48px 56px 56px;
        gap: 40px;
    }
    .home_about_us_header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .home_about_us_list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .home_about_us_item {
        padding: 24px;
        gap: 20px;
    }
}
@media (max-width: 575px) {
    .home_about_us_section {
        padding: 64px 0 80px;
    }
    .home_about_us_inner {
        padding: 24px 20px 32px;
        gap: 24px;
        margin-bottom: 32px;
    }
    .home_about_us_card {
        padding: 20px;
    }
    .home_about_us_intro {
        margin-bottom: 20px;
        font-size: var(--sixteen);
    }
    .home_about_us_item {
        padding: 16px;
        gap: 12px;
    }
    .home_about_us_icon {
        width: 40px;
        height: 40px;
    }
    .home_about_us_item_title {
        font-size: var(--sixteen);
    }
}

/* Long-form KYU guide (home_about_us_section card) */
.home_guide_content {
    margin: 0;
}

.home_guide_eyebrow {
    display: inline-block;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.2;
}
.home_guide_eyebrow--on_dark {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2px;
}
.home_guide_eyebrow--inline {
    color: var(--brandGray);
    margin-bottom: 12px;
}

.home_guide_top_grid {
    display: grid;
    gap: 20px;
    margin-bottom: 8px;
}
@media (min-width: 900px) {
    .home_guide_top_grid {
        grid-template-columns: 1fr minmax(220px, 280px);
        align-items: stretch;
        gap: 24px;
    }
}

.home_guide_lead {
    position: relative;
    padding: 20px 22px 22px 24px;
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.07) 0%, rgba(13, 148, 136, 0.08) 50%, rgba(20, 184, 166, 0.1) 100%);
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--brandGray);
}
.home_guide_lead p {
    margin: 0;
    font-size: var(--eighteen);
    line-height: 1.65;
    color: var(--black);
}

.home_guide_aside_stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.home_guide_mini {
    padding: 16px 18px;
    background: #f8fafc;
    border: 1px solid rgba(40, 40, 40, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.home_guide_mini--accent {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0%, rgba(13, 148, 136, 0.09) 50%, rgba(20, 184, 166, 0.11) 100%);
    border-color: rgba(15, 118, 110, 0.18);
}
.home_guide_mini_label {
    font-size: 11px;
    font-family: 'Inter-Bold', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(40, 40, 40, 0.45);
}
.home_guide_mini_value {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--eighteen);
    color: var(--black);
}
.home_guide_mini_hint {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
}

.home_guide_subsection {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px dashed rgba(40, 40, 40, 0.12);
}
.home_guide_subsection_head {
    margin-bottom: 20px;
}

.home_guide_pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 8px;
}
@media (min-width: 768px) {
    .home_guide_pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.home_guide_pillar {
    position: relative;
    padding: 22px 22px 22px 24px;
    background: #fafbfc;
    border: 1px solid rgba(40, 40, 40, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.home_guide_pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brandGradientStripe);
    opacity: 0.9;
}
.home_guide_pillar:hover {
    border-color: rgba(15, 118, 110, 0.22);
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.1);
}
.home_guide_pillar_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}
.home_guide_pillar_index {
    display: inline-block;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--brandGray);
    margin-bottom: 0;
}
.home_guide_tag {
    font-size: 11px;
    font-family: 'Inter-SemiBold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brandGray);
    background: rgba(15, 118, 110, 0.09);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}
.home_guide_pillar_title {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: clamp(1rem, 2.4vw, 1.125rem);
    line-height: 1.3;
    color: var(--black);
    margin: 0 0 10px;
}
.home_guide_pillar_text {
    margin: 0;
    font-size: var(--forteen);
    line-height: 1.62;
    color: var(--gray);
}
.home_guide_pillar_foot {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(40, 40, 40, 0.06);
}
.home_guide_pill {
    font-size: 12px;
    font-family: 'Inter-Medium', sans-serif;
    color: var(--black);
    background: #eef2ff;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(15, 118, 110, 0.14);
}
.home_guide_pill--soft {
    background: #f1f5f9;
    border-color: rgba(40, 40, 40, 0.08);
    color: var(--gray);
}

.home_guide_section {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(40, 40, 40, 0.08);
}
.home_guide_section_head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.home_guide_section_title {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: var(--black);
    margin: 0;
}

.home_guide_split {
    display: grid;
    gap: 24px;
    align-items: center;
}
@media (min-width: 640px) {
    .home_guide_split {
        grid-template-columns: minmax(168px, 210px) 1fr;
        gap: 32px;
    }
}
.home_guide_stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--brandGradient);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.home_guide_stat_value {
    font-family: 'Inter-Black', sans-serif;
    font-size: clamp(2rem, 6vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.03em;
}
.home_guide_stat_unit {
    font-size: var(--sixteen);
    font-family: 'Inter-SemiBold', sans-serif;
    margin-top: 6px;
}
.home_guide_stat_note {
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.9;
    line-height: 1.35;
    max-width: 20ch;
}
.home_guide_stat_body p {
    margin: 0;
    font-size: var(--eighteen);
    line-height: 1.65;
    color: var(--gray);
}

.home_guide_micro_grid {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}
@media (min-width: 640px) {
    .home_guide_micro_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
.home_guide_micro {
    padding: 16px 18px;
    background: #fafbfc;
    border-radius: var(--radius-md);
    border: 1px solid rgba(40, 40, 40, 0.07);
}
.home_guide_micro_title {
    display: block;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--forteen);
    color: var(--black);
    margin-bottom: 8px;
}
.home_guide_micro_text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--gray);
}

.home_guide_panel {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(40, 40, 40, 0.08);
    margin-bottom: 16px;
}
.home_guide_panel--soft {
    background: rgba(241, 245, 249, 0.65);
}
.home_guide_panel_text {
    margin: 0;
    font-size: var(--forteen);
    line-height: 1.6;
    color: var(--gray);
}

.home_guide_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.home_guide_chip {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid rgba(40, 40, 40, 0.1);
    border-radius: var(--radius-md);
    min-width: min(100%, 200px);
    flex: 1 1 180px;
}
.home_guide_chip:hover {
    border-color: rgba(15, 118, 110, 0.28);
    box-shadow: var(--shadow-sm);
}
.home_guide_chip_state {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--forteen);
    color: var(--black);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
}
.home_guide_chip_tax {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
}
/* State-colored chips (accent border + soft fill + state pill) */
.home_guide_chip--state-or {
    border-color: rgba(21, 128, 61, 0.35);
    border-left-width: 4px;
    border-left-color: #15803d;
    background: linear-gradient(90deg, rgba(21, 128, 61, 0.07) 0%, #f8fafc 42%);
}
.home_guide_chip--state-or .home_guide_chip_state {
    color: #14532d;
    background: rgba(21, 128, 61, 0.14);
    border-color: rgba(21, 128, 61, 0.35);
}
.home_guide_chip--state-nm {
    border-color: rgba(194, 65, 12, 0.35);
    border-left-width: 4px;
    border-left-color: #c2410c;
    background: linear-gradient(90deg, rgba(194, 65, 12, 0.08) 0%, #f8fafc 42%);
}
.home_guide_chip--state-nm .home_guide_chip_state {
    color: #9a3412;
    background: rgba(194, 65, 12, 0.12);
    border-color: rgba(194, 65, 12, 0.35);
}
.home_guide_chip--state-ny {
    border-color: rgba(30, 58, 138, 0.35);
    border-left-width: 4px;
    border-left-color: #1e3a8a;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.08) 0%, #f8fafc 42%);
}
.home_guide_chip--state-ny .home_guide_chip_state {
    color: #1e3a8a;
    background: rgba(30, 58, 138, 0.12);
    border-color: rgba(30, 58, 138, 0.3);
}
.home_guide_chip--state-ct {
    border-color: rgba(14, 116, 144, 0.4);
    border-left-width: 4px;
    border-left-color: #0e7490;
    background: linear-gradient(90deg, rgba(14, 116, 144, 0.08) 0%, #f8fafc 42%);
}
.home_guide_chip--state-ct .home_guide_chip_state {
    color: #155e75;
    background: rgba(14, 116, 144, 0.12);
    border-color: rgba(14, 116, 144, 0.35);
}
.home_guide_chip--state-ky {
    border-color: rgba(15, 118, 110, 0.4);
    border-left-width: 4px;
    border-left-color: var(--brandGray);
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(13, 148, 136, 0.1) 45%, rgba(20, 184, 166, 0.12) 100%);
    box-shadow: 0 1px 0 rgba(15, 118, 110, 0.1);
}
.home_guide_chip--state-ky .home_guide_chip_state {
    color: var(--brandGrayBold);
    background: rgba(15, 118, 110, 0.12);
    border-color: rgba(15, 118, 110, 0.32);
}
.home_guide_state_mark {
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    white-space: nowrap;
}
.home_guide_state_mark--ky {
    color: var(--brandGrayBold);
    background: rgba(15, 118, 110, 0.12);
    border: 1px solid rgba(15, 118, 110, 0.26);
}

.home_guide_table_wrap {
    width: 100%;
    overflow-x: auto;
    margin: 4px 0 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(40, 40, 40, 0.1);
    box-shadow: var(--shadow-sm);
    -webkit-overflow-scrolling: touch;
}
.home_guide_table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: var(--forteen);
    line-height: 1.45;
    color: var(--gray);
}
.home_guide_table thead th {
    background: var(--brandGradient);
    color: var(--white);
    font-family: 'Inter-SemiBold', sans-serif;
    padding: 14px 16px;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.home_guide_table tbody tr:nth-child(even) {
    background: rgba(248, 250, 252, 0.9);
}
.home_guide_table tbody tr:hover {
    background: rgba(15, 118, 110, 0.045);
}
.home_guide_table th,
.home_guide_table td {
    border: 1px solid rgba(40, 40, 40, 0.07);
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}
.home_guide_table tbody th[scope="row"] {
    font-family: 'Inter-SemiBold', sans-serif;
    color: var(--black);
    background: rgba(241, 245, 249, 0.95);
    width: 26%;
}

@media (max-width: 767px) {
    .home_guide_table_wrap {
        overflow-x: visible;
        -webkit-overflow-scrolling: auto;
        border: none;
        box-shadow: none;
        background: transparent;
    }
    .home_guide_table {
        min-width: 0;
        display: block;
        width: 100%;
        border: none;
    }
    .home_guide_table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    .home_guide_table tbody {
        display: block;
        width: 100%;
    }
    .home_guide_table tbody tr {
        display: block;
        width: 100%;
        margin-bottom: 14px;
        border: 1px solid rgba(40, 40, 40, 0.1);
        border-radius: var(--radius-lg);
        overflow: hidden;
        background: var(--white);
        box-shadow: var(--shadow-sm);
    }
    .home_guide_table tbody tr:nth-child(even) {
        background: var(--white);
    }
    .home_guide_table tbody tr:hover {
        background: var(--white);
    }
    .home_guide_table tbody th[scope="row"] {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
        border: none;
        border-bottom: 1px solid rgba(40, 40, 40, 0.08);
        background: var(--brandGradient);
        color: var(--white);
        font-size: var(--forteen);
    }
    .home_guide_table tbody td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
        border: none;
        border-bottom: 1px solid rgba(40, 40, 40, 0.07);
    }
    .home_guide_table tbody td:last-child {
        border-bottom: none;
    }
    .home_guide_table tbody td::before {
        content: attr(data-label);
        display: block;
        font-family: 'Inter-SemiBold', sans-serif;
        font-size: 12px;
        letter-spacing: 0.02em;
        color: var(--brandGrayLight);
        margin-bottom: 6px;
        line-height: 1.3;
    }
}

.home_guide_callout {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(40, 40, 40, 0.1);
}
.home_guide_callout_title {
    display: block;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--forteen);
    color: var(--black);
    margin-bottom: 8px;
}
.home_guide_callout_text {
    margin: 0;
    font-size: var(--forteen);
    line-height: 1.55;
    color: var(--gray);
}
.home_guide_callout--brand {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0%, rgba(13, 148, 136, 0.07) 50%, rgba(20, 184, 166, 0.06) 100%);
    border-color: rgba(15, 118, 110, 0.2);
}

.home_guide_deadlines_row {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .home_guide_deadlines_row {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 28px;
    }
    .home_guide_deadlines_col--dates {
        grid-column: 1;
    }
    .home_guide_deadlines_col--aside {
        grid-column: 2;
    }
}
.home_guide_deadlines_right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}
.home_guide_deadlines_right .home_guide_notice,
.home_guide_deadlines_right .home_guide_callout {
    margin: 0;
}
.home_guide_subpanel {
    padding: 20px 22px;
    background: #fafbfc;
    border: 1px solid rgba(40, 40, 40, 0.08);
    border-radius: var(--radius-lg);
}
.home_guide_subpanel_title {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--eighteen);
    color: var(--black);
    margin: 0 0 16px;
}
.home_guide_subpanel .home_guide_timeline {
    margin-bottom: 0;
}

.home_guide_bullets {
    margin: 0;
    padding-left: 1.1rem;
    font-size: var(--forteen);
    line-height: 1.6;
    color: var(--gray);
}
.home_guide_bullets li {
    margin-bottom: 0.4em;
}

.home_guide_cta_bar {
    margin-top: 36px;
    padding: 24px 22px;
    border-radius: var(--radius-lg);
    background: var(--brandGradientDeep);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    box-shadow: var(--shadow-md);
}
@media (min-width: 720px) {
    .home_guide_cta_bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 28px 32px;
    }
}
.home_guide_cta_label {
    display: block;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--eighteen);
    margin-bottom: 6px;
}
.home_guide_cta_sub {
    display: block;
    font-size: var(--forteen);
    opacity: 0.92;
    line-height: 1.45;
}
.home_guide_cta_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.home_guide_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--forteen);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.home_guide_cta_btn--primary {
    background: var(--white);
    color: var(--brandGray);
    border: 2px solid var(--white);
}
.home_guide_cta_btn--primary:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
}
.home_guide_cta_btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.55);
}
.home_guide_cta_btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.85);
}

.home_guide_timeline {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.home_guide_timeline_item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    padding: 14px 0 18px 4px;
}
.home_guide_timeline_item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 26px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.35) 0%, rgba(20, 184, 166, 0.12) 55%, rgba(20, 184, 166, 0.06) 100%);
    border-radius: 2px;
}
.home_guide_timeline_badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 13px;
    color: var(--white);
    background: var(--brandGradient);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
    position: relative;
    z-index: 1;
}
.home_guide_timeline_content {
    flex: 1;
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.home_guide_timeline_range {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--eighteen);
    color: var(--black);
}
.home_guide_timeline_due {
    font-size: var(--forteen);
    color: var(--gray);
    line-height: 1.45;
}
.home_guide_timeline_late {
    color: rgba(40, 40, 40, 0.5);
    font-size: 13px;
}

.home_guide_notice {
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.09) 0%, rgba(251, 191, 36, 0.06) 100%);
    border: 1px solid rgba(217, 119, 6, 0.28);
    border-radius: var(--radius-lg);
    border-left: 4px solid #d97706;
}
.home_guide_notice_title {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--eighteen);
    color: var(--black);
    margin: 0 0 10px;
}
.home_guide_notice_text {
    margin: 0;
    font-size: var(--forteen);
    line-height: 1.65;
    color: var(--gray);
}

@media (max-width: 575px) {
    .home_guide_timeline_item:not(:last-child)::after {
        left: 25px;
    }
    .home_guide_stat {
        padding: 24px 18px;
    }
}

/* Shared styles (used by services page) */
.home_aboutus {
    background: var(--brandGradientDeep);
    padding: 10px 10px 10px 40px;
    border-radius: var(--radius-lg);
    align-items: stretch;
    gap: 16px;
    margin: 112px 0;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
}
.home_aboutus .stroke_wtitle, .home_aboutus .title_conts,
.home_aboutus .title_conts b, .home_aboutus .title_conts strong{
    color: var(--white);
}
.home_aboutus .title_conts b, .home_aboutus .title_conts strong{
    text-transform: uppercase;
    font-family: 'Inter-Black';
}
.learn_more_btn {
    padding: 14px 24px;
    gap: 10px;
    color: var(--white);
    font-family: 'Inter-Bold';
    font-size: var(--eighteen);
    border-radius: var(--radius-full);
    cursor: pointer;
    background: var(--brandGradient);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.learn_more_btn:hover {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: var(--shadow-md);
}
.learn_more_btn:hover svg {
    transform: translateX(6px);
}
.serv_info_block {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    box-shadow: var(--shadow-md);
}
.servs_inf{
    font-family: 'Inter-Medium';
    font-size: var(--eighteen);
    color: rgba(40, 40, 40, 0.60);
}
.serv_two_winds{
    justify-content: start;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.serv_info_item {
    cursor: pointer;
    border-radius: var(--radius-md);
    border: 1px solid rgba(40, 40, 40, 0.12);
    flex-direction: column;
    align-items: start;
    gap: 28px;
    padding: 20px;
    justify-content: start;
    width: 100%;
    background: var(--white);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.serv_info_item:hover {
    background: rgba(20, 184, 166, 0.04);
    border-color: rgba(20, 184, 166, 0.2);
    box-shadow: var(--shadow-sm);
}
.serv_img {
    max-width: 60px;
}
.serv_img img {
    border-radius: var(--radius-sm);
}
.servs_title {
    font-size: var(--twenty);
    font-family: 'Inter-Bold';
    color: var(--black);
    transition: color var(--transition);
}
.serv_info_item:hover .servs_title {
    color: var(--brandGray);
}
.serv_inf {
    color: rgba(40, 40, 40, 0.60);
    font-size: var(--eighteen);
}
.whowe_block{
    gap: 16px;
    align-items: stretch;
}
.map_img_block{
    max-width: 778px;
    width: 100%;
    position: relative;
}
.map_img_block svg{
    width: 100%;
    height: 100%;
}
.loc_abs{
    position: absolute;
}
.province_path{
    cursor: pointer;
}
.province_path:hover,
.province_path_active {
    stroke: var(--brandGray);
    stroke-width: 3;
    stroke-opacity: 1;
}

/* Home hero: edge-to-edge on mobile / tablet (no grey gutters or excess top gap) */
@media screen and (max-width: 1024px) {
    .home_general_firts_section.full_wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: none;
    }
    .home_general_firts_section .home_general_block {
        margin-top: 0;
        padding: 88px 0 40px 0;
        max-height: none;
    }
    .home_general_firts_section .home_general_img {
        width: 100%;
        left: 0;
        right: 0;
    }
    .home_general_firts_section .home_general_img img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }
    .home_general_firts_section .home_block.wrapper {
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* end home */