/* home */
/* Hero section: always full width, no top/side white space */
.full_wrapper.home_general_firts_section {
    max-width: none;
    width: 100%;
    padding: 0;
}
.home_general_firts_section .home_general_block {
    margin-top: 0;
}
.home_general_block{
    min-height: 100vh;
    padding: 148px 0 96px 0;
    position: relative;
    margin-top: 10px;
    max-height: 1000px;
    justify-content: center;
}
.home_general_img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    /* Clip Ken Burns scale so photo never extends past the gradient veil (::after) */
    overflow: hidden;
}
.home_general_img::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: var(--grad-veil);
}
.home_general_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    animation: hero-ken 28s ease-in-out infinite alternate;
}
@keyframes hero-ken {
    from { transform: scale(1.02) translate(0, 0); }
    to { transform: scale(1.08) translate(-1.5%, -1%); }
}
.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;
}
.home_hero_left_column {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    flex: 0 1 400px;
    min-width: 0;
    max-width: 400px;
}
.home_hero_right_column.title_info_blck {
    flex: 1 1 480px;
    max-width: min(600px, 100%);
    min-width: 0;
}
.home_hero_lead_wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
}
.title_info_subtitle_wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 26px;
    border-radius: var(--radius);
    background: var(--grad-glass);
    backdrop-filter: blur(28px) saturate(1.35);
    -webkit-backdrop-filter: blur(28px) saturate(1.35);
    border: 1px solid rgba(255, 255, 255, 0.28);
    margin-bottom: auto;
    box-shadow: 0 8px 32px rgba(30, 11, 58, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.title_info_subtitle_wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(124, 58, 237, 0.1));
    pointer-events: none;
    z-index: 0;
}
.title_info_subtitle_wrap > * {
    position: relative;
    z-index: 1;
}
.title_info_subtitle {
    color: rgba(255, 255, 255, 0.98);
    margin: 0;
    text-align: left;
    font-size: 1.0625rem;
    line-height: 1.65;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.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;
    animation: rise-fade 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.title_info_subtitle_wrap .general_title {
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.home_first_blvk .home_hero_right_column .home_hero_lead_wrap {
    animation: rise-fade 0.8s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.home_hero_cta_column {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    max-width: 360px;
    width: 100%;
    animation: rise-fade 0.85s 0.14s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.app_form_row{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.app_form_label{
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}
.app_form .effective_date_row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.app_form input[type="date"] {
    color-scheme: dark;
}
.app_form{
    position: relative;
    max-width: 508px;
    width: 100%;
    justify-content: start;
    flex-direction: column;
    gap: 9px;
    align-items: start;
    padding: 30px 34px;
    overflow: hidden;
    border-radius: 8px 128px 8px 8px;
    background: linear-gradient(155deg, rgba(30, 11, 58, 0.45) 0%, rgba(124, 58, 237, 0.22) 100%);
    backdrop-filter: blur(28px) saturate(1.2);
    border: 2px solid rgba(245, 158, 11, 0.55);
    box-shadow: 0 12px 48px rgba(30, 11, 58, 0.25);
    clip-path: polygon(0 0%, calc(100% - 107px) 0, 100% 107px, 100% 100%, 0 100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.app_form:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.85);
    box-shadow: 0 20px 56px rgba(91, 33, 182, 0.28);
}
.app_form::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 52px;
    width: 165px;
    height: 100px;
    background: transparent;
    border-top-right-radius: 16px;
    transform: translate(72%, -53%) rotate(45deg);
    border-bottom: 4px solid var(--c-amber);
    opacity: 0.9;
}
.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: 8px;
    margin-bottom: 22px;
    max-width: 320px;
    font-size: var(--sixteen);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.60);
}
.app_form .inps_{
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.20);
    padding: 14px 16px;
    font-size: 13px;
}
.app_form .inps_::placeholder{
    color: var(--white);
}
.app_form .app_select{
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.20);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.9)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 28px;
}
.app_form .app_select:invalid{
    color: rgba(255, 255, 255, 0.9);
}
.app_form .app_select option{
    background-color: #fff;
    color: var(--black);
}
.next_btn{
    gap: 10px;
    justify-content: center;
    background-color: var(--white);
    border-radius: 999px;
    padding: 14px 16px;
    margin-top: 8px;
    cursor: pointer;
    font-size: var(--forteen);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.next_btn svg path {
    stroke: var(--c-ink);
}
.next_btn:hover{
    color: var(--white);
    background: var(--grad-cta);
    background-size: 200% 200%;
    animation: grad-shift 4s ease infinite;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.next_btn:hover svg path{
    stroke: var(--white);
}
/* What we do - simple strip, no duplication with Services */
/* What we do - single column, max 1620px, stylish */
.home_what_we_do {
    padding: 3.5rem 3rem 4rem;
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(40, 40, 40, 0.06);
}
.home_what_we_do_title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.75rem;
    letter-spacing: -0.03em;
}
.home_what_we_do_lead {
    font-size: 1.0625rem;
    color: rgba(40, 40, 40, 0.72);
    margin: 0 0 1.75rem;
    line-height: 1.6;
}
.home_service_pills {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
}
.home_service_pills li {
    margin: 0;
}
.home_service_pills span {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--black);
    background: #fff;
    border-radius: var(--radiusSm);
    border: 1px solid rgba(40, 40, 40, 0.08);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.home_service_pills span:hover {
    border-color: var(--accentLight);
    box-shadow: var(--shadowHover);
}
.home_what_we_do_link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.home_what_we_do_link:hover {
    color: var(--brandGrayBold);
    text-decoration: underline;
}
.home_what_we_do_link span {
    margin-left: 0;
}

.home_aboutus{
    background: var(--grad-band);
    background-size: 200% 200%;
    animation: grad-shift 16s ease infinite;
    padding: 10px 10px 10px 40px;
    border-radius: var(--radius);
    align-items: stretch;
    gap: 20px;
    margin: 100px 0;
    box-shadow: var(--shadow);
}
.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 22px;
    gap: 10px;
    color: var(--c-ink);
    font-family: 'Inter-Bold';
    font-size: var(--eighteen);
    border-radius: 999px;
    cursor: pointer;
    background: var(--grad-cta);
    background-size: 200% auto;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.35);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.learn_more_btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-shine);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
    pointer-events: none;
}
.learn_more_btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.45);
    animation: grad-shift 5s ease infinite;
}
.learn_more_btn:hover::after {
    transform: translateX(120%);
}
.learn_more_btn:hover svg {
    transform: translateX(10px);
}
.serv_info_block{
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.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: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.serv_info_item{
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid rgba(40, 40, 40, 0.20);
    flex-direction: column;
    align-items: start;
    gap: 38px;
    padding: 20px;
    justify-content: start;
    width: calc(100% / 2 - 10px);
}
.serv_img{
    max-width: 60px;
}
.serv_img img{
    border-radius: 2px;
}
.servs_title{
    font-size: var(--twenty);
    font-family: 'Inter-Bold';
}
.serv_inf{
    color: rgba(40, 40, 40, 0.60);
    font-size: var(--eighteen);
}
.serv_info_item:hover{
    background: #F6F6F6;
}
.whowe_block{
    gap: 20px;
    align-items: start;
}
.whowe_block .map_img_block{
    flex: 0 0 70%;
    max-width: 70%;
}
.whowe_block .revs_descrip_titles{
    flex: 0 0 30%;
    max-width: 30%;
    padding-bottom: 0;
    gap: 40px;
}
.whowe_block .revs_descrip_titles .revs_descrip{
    margin-bottom: 0;
    padding-bottom: 0;
}
.whowe_block .whowe_states_text{
    line-height: 1.5;
}
.whowe_block .whowe_states_text .state_name{
    color: var(--c-teal);
    font-weight: 600;
}
.map_img_block{
    max-width: 778px;
    width: 100%;
    position: relative;
}
.map_img_block .map_with_markers{
    position: relative;
    display: block;
}
.map_img_block .map_marker{
    position: absolute;
    font-size: 10px;
    font-weight: 600;
    color: #1a365d;
    background: rgba(255,255,255,0.95);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(64,105,124,0.4);
    max-width: 180px;
    line-height: 1.25;
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.map_img_block .map_marker_svg{
    font-size: 9px;
    padding: 3px 6px;
    max-width: 140px;
}
.map_img_block svg{
    width: 100%;
    height: 100%;
}
.loc_abs{
    position: absolute;
}
.province_path{
    cursor: pointer;
}
.province_path:hover, .province_path_active{
    stroke: var(--accent);
    stroke-width: 3;
    stroke-opacity: 1;
}
/* Colored borders for states with truck taxes (NY, CT, KY, OR, NM) */
.province_path_active,
.province_path_ny,
.province_path_ct,
.province_path_ky,
.province_path_or,
.province_path_nm{
    stroke: var(--brandGrayBold) !important;
    stroke-width: 4 !important;
    stroke-opacity: 1 !important;
}

.home_hero_bullets {
    margin: 12px 0 0;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.55;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.title_info_subtitle_wrap .home_hero_bullets {
    margin: 0;
}
.home_hero_bullets li {
    margin-bottom: 6px;
}
.home_hero_cta_stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.ny_hero_btn {
    justify-content: center;
    padding: 15px 22px;
    border-radius: 999px;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--sixteen);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.ny_hero_btn--primary {
    background: var(--grad-cta);
    background-size: 200% auto;
    color: var(--c-ink);
    box-shadow: 0 6px 28px rgba(234, 88, 12, 0.4);
}
.ny_hero_btn--primary:hover {
    transform: translateY(-4px) scale(1.02);
    animation: grad-shift 5s ease infinite;
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.5);
}
.ny_hero_btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
}
.ny_hero_btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(253, 224, 71, 0.85);
    transform: translateY(-3px);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
}
.home_hero_cta_note {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0 0;
    text-align: center;
    width: 100%;
}
.home_hero_cta_note .f_contacts {
    display: inline;
    color: var(--accentLight);
}
.ny_section {
    padding-top: 56px;
    padding-bottom: 56px;
}
.ny_section--alt {
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.95) 0%, rgba(237, 233, 254, 0.92) 100%);
    border-radius: var(--radius);
    margin-top: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: var(--shadow);
    animation: rise-fade 0.7s ease both;
}
.ny_cta_row {
    margin-top: 20px;
}
.ny_pricing_table_wrap {
    overflow-x: auto;
    margin-top: 16px;
}
.ny_pricing_table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    font-size: var(--sixteen);
}
.ny_pricing_table th,
.ny_pricing_table td {
    border: 1px solid rgba(26, 31, 36, 0.12);
    padding: 12px 16px;
    text-align: left;
}
.ny_pricing_table thead {
    background: var(--grad-band);
    background-size: 160% 160%;
    animation: grad-shift 10s ease infinite;
    color: var(--white);
}
.ny_pricing_table tbody tr:nth-child(even) {
    background: rgba(124, 58, 237, 0.06);
}
.ny_pricing_table tbody tr {
    transition: background 0.3s ease, transform 0.3s ease;
}
.ny_pricing_table tbody tr:hover {
    background: rgba(124, 58, 237, 0.08);
}
.contact_anchor_sections {
    padding: 32px 0 8px;
}
.contact_anchor_block {
    margin-bottom: 28px;
    scroll-margin-top: 120px;
}

@media (prefers-reduced-motion: reduce) {
    .home_general_img img {
        animation: none;
        transform: none;
    }
}

/* end home */