:root {
    --hp-dark: #0c2e16;
    --hp-lime: #cfff7f;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hp_hero {
    padding: 16px 30px;
}
@media (min-width: 768px) {
    .hp_hero {
        padding: 16px 45px;
    }
}
.hp_hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: #0c2e16;
}
.hp_hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hp_hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hp_hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    z-index: 1;
}
.hp_hero-video.active {
    opacity: 1;
}
.hp_hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.hp_hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 16px;
}
.hp_hero-title {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 16px;
}
.hp_hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    margin: 0 auto 24px;
}
.hp_hero-cta {
    margin-bottom: 24px;
}
.hp_hero-btn {
    display: inline-block;
    background: var(--hp-dark);
    color: var(--hp-lime);
    font-size: 18px;
    font-weight: 600;
    padding: 13px 34px;
    border-radius: 999px;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.hp_hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    color: var(--hp-lime);
}
.hp_hero-tagline {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0 0;
}
.hp_hero-tagline span {
    color: var(--hp-lime);
}
@media (max-width: 768px) {
    .hp_hero-inner {
        height: auto;
        min-height: 400px;
        padding: 32px 0;
    }
    .hp_hero-title {
        font-size: 1.4rem;
    }
    .hp_hero-tagline {
        font-size: 14px;
    }
}

/* ---------- WhyExhibitorlyUSP ---------- */
.hp_usp {
    padding: 60px 0 30px;
    background: #f9fafb;
}
.hp_usp .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}
.hp_usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hp_usp-text h2 {
    font-weight: 600;
    color: var(--hp-dark);
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 20px;
}
.hp_usp-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}
.hp_usp-visual {
    position: relative;
    width: 100%;
}
.hp_usp-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #eee;
}
.hp_usp-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease;
}
.hp_usp-slide.active {
    opacity: 1;
}
.hp_usp-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.hp_usp-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    transition:
        width 0.3s,
        background 0.3s;
}
.hp_usp-dots .dot.active {
    width: 20px;
    background: var(--hp-lime);
}
.hp_usp-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #eee;
    padding: 12px 16px;
    z-index: 2;
}
.hp_usp-badge--left {
    bottom: -18px;
    left: -18px;
}
.hp_usp-badge--right {
    top: -18px;
    right: -18px;
}
.hp_usp-badge .label {
    font-size: 11px;
    color: #4b5563;
    font-weight: 500;
    margin: 0;
}
.hp_usp-badge .value {
    font-size: 22px;
    font-weight: 700;
    color: var(--hp-dark);
    margin: 2px 0;
}
.hp_usp-badge .sub {
    font-size: 11px;
    color: #4b5563;
    margin: 0;
}

/* ---------- TradeshowsSection ---------- */
.hp_shows {
    padding: 48px 45px;
    background: linear-gradient(135deg, #0c2e16 0%, #1a4a2a 100%);
    position: relative;
    overflow: hidden;
}
.hp_shows-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: var(--hp-lime);
    filter: blur(70px);
    pointer-events: none;
}
.hp_shows-glow--1 {
    top: -80px;
    right: -80px;
    opacity: 0.2;
}
.hp_shows-glow--2 {
    bottom: -80px;
    left: -80px;
    opacity: 0.1;
}
.hp_shows .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hp_shows-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}
.hp_shows-head .eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hp-lime);
    margin-bottom: 10px;
}
.hp_shows-head h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hp_shows-head .subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.hp_shows-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}
.hp_shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hp_show-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 440px;
    transition:
        box-shadow 0.3s,
        border-color 0.3s;
}
.hp_show-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #d1d5db;
}
.hp_show-card-img {
    position: relative;
    height: 176px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4b5563, #1f2937);
    overflow: hidden;
}
.hp_show-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.hp_show-card:hover .hp_show-card-img img {
    transform: scale(1.06);
}
.hp_show-card-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
}
.hp_show-card-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--hp-dark);
    color: var(--hp-lime);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
}
.hp_show-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hp_show-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-dark);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp_show-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    flex: 1;
}
.hp_show-card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}
.hp_show-card-meta svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--hp-dark);
}
.hp_show-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.hp_show-card-tags span {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #6b7280;
}
.hp_show-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hp-dark);
    margin-top: auto;
    width: fit-content;
    border-radius: 999px;
    padding: 8px 16px;
    transition: background 0.3s;
}
.hp_show-card:hover .hp_show-card-link {
    background: var(--hp-lime);
}
.hp_show-card-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}
.hp_show-card:hover .hp_show-card-link svg {
    transform: translateX(3px);
}
.hp_shows-dots {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: 28px;
}
.hp_shows-dots button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}
.hp_shows-dots button::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    transition:
        width 0.3s,
        background 0.3s;
}
.hp_shows-dots button.active::after {
    width: 20px;
    background: var(--hp-lime);
}
.hp_shows-cta {
    text-align: center;
    margin-top: 28px;
}
.hp_shows-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hp-lime);
    color: var(--hp-dark);
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.hp_shows-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
@media (max-width: 992px) {
    .hp_shows-grid {
        grid-template-columns: 1fr;
    }
    .hp_show-card {
        height: auto;
        min-height: 380px;
    }
}
@media (max-width: 768px) {
    .hp_shows {
        padding: 48px 30px;
    }
}

/* ---------- WhyExhibitorlyComparison ---------- */
.hp_comparison {
    padding: 30px 0 60px;
    background: #f3f4f6;
}
.hp_comparison .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}
.hp_comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.hp_comparison-card-wrap {
    position: relative;
    display: flex;
}
.hp_comparison-card {
    position: relative;
    border-radius: 24px;
    padding: 36px 28px 28px;
    width: 100%;
}
.hp_comparison-card--old {
    background: #f3f4f6;
    border: 2px solid #cbd5e1;
}
.hp_comparison-card--new {
    background: linear-gradient(135deg, #0c2e16 0%, #1a4a2a 100%);
    overflow: hidden;
}
/* Sibling of the card (not a child) so the card's overflow:hidden — needed
   to clip the decorative glow blur below — never clips this floating tab.
   base44 structures the DOM the same way (tag + card as siblings inside a
   shared position:relative wrapper); an earlier version nested the tag
   inside the card itself, which clipped "THE EXHIBITORLY WAY" in half. */
.hp_comparison-tag {
    position: absolute;
    top: -13px;
    left: 28px;
    z-index: 2;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hp_comparison-tag--old {
    background: #cbd5e1;
    color: #374151;
    border: 1px solid #9ca3af;
}
.hp_comparison-tag--new {
    background: var(--hp-lime);
    color: var(--hp-dark);
}
.hp_comparison-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 6px 0 4px;
}
.hp_comparison-card--old h3 {
    color: var(--hp-dark);
}
.hp_comparison-card--new h3 {
    color: var(--hp-lime);
}
.hp_comparison-card > p {
    font-size: 13px;
    margin-bottom: 22px;
}
.hp_comparison-card--old > p {
    color: #6b7280;
}
.hp_comparison-card--new > p {
    color: #d1d5db;
}
.hp_comparison-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hp_comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}
.hp_comparison-card--old .hp_comparison-list li {
    color: #374151;
}
.hp_comparison-card--new .hp_comparison-list li {
    color: #fff;
    font-weight: 500;
}
.hp_comparison-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.hp_comparison-card--old .hp_comparison-icon {
    background: #e5e7eb;
    color: #ef4444;
}
.hp_comparison-card--new .hp_comparison-icon {
    background: var(--hp-lime);
    color: var(--hp-dark);
}
.hp_comparison-icon svg {
    width: 12px;
    height: 12px;
}
.hp_comparison-cta {
    text-align: center;
    margin-top: 36px;
}
.hp_comparison-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hp-dark);
    color: var(--hp-lime);
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.hp_comparison-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(12, 46, 22, 0.25);
}

/* ---------- HowItWorksSection / "Why We Built Exhibitorly" story ---------- */
.hp_story {
    padding: 64px 0;
    background: var(--hp-dark);
}
.hp_story .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 4%;
    text-align: center;
}
.hp_story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hp-lime);
    color: var(--hp-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.hp_story-badge svg {
    width: 14px;
    height: 14px;
}
.hp_story h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-lime);
    margin-bottom: 40px;
}
.hp_story-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.hp_story-text p.highlight {
    color: var(--hp-lime);
    font-weight: 600;
    font-size: 18px;
}
.hp_story-cta {
    margin-top: 40px;
}
.hp_story-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hp-lime);
    color: var(--hp-dark);
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.hp_story-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
    .hp_story {
        padding: 48px 0;
    }
    .hp_story h2 {
        font-size: 1.6rem;
    }
    .hp_story-cta a {
        font-size: 12px;
        text-align: center;
    }
}

/* ---------- WhyExhibitorlySection (1:1 base44 translation) ---------- */
.hp_why {
    padding: 48px 0;
    background: linear-gradient(to bottom right, #f0fdf4, #f9fafb);
}
.hp_why .container {
    max-width: 1280px;
    margin: 0 auto;
}
.hp_why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
}
@media (min-width: 1024px) {
    .hp_why-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.hp_why-left,
.hp_why-right {
    min-width: 0;
}
.hp_why-left {
    display: flex;
    flex-direction: column;
}
.hp_why h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--hp-dark);
    line-height: 1.2;
    margin: 0 0 24px;
}
@media (min-width: 768px) {
    .hp_why h2 {
        font-size: 36px;
    }
}
.hp_why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.hp_why-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    transition:
        background 0.3s,
        box-shadow 0.3s;
}
.hp_why-feature:hover {
    background: var(--hp-lime);
    box-shadow: 0 4px 18px rgba(12, 46, 22, 0.1);
}
.hp_why-feature .icon {
    flex-shrink: 0;
    background: var(--hp-dark);
    color: var(--hp-lime);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp_why-feature .icon svg {
    width: 24px;
    height: 24px;
}
.hp_why-feature h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hp-dark);
    line-height: 1.25;
    margin: 0;
}
.hp_why-map {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    min-height: 260px;
}
.hp_why-map iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
    display: block;
}
.hp_why-address {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    padding: 12px 16px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.hp_why-address .name {
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    margin: 0;
}
.hp_why-address .addr {
    font-size: 12px;
    color: #6b7280;
    margin: 2px 0 0;
}
.hp_why-address a {
    font-size: 12px;
    font-weight: 600;
    background: var(--hp-dark);
    color: var(--hp-lime);
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.2s;
}
.hp_why-address a:hover {
    opacity: 0.9;
}
.hp_why-right {
    display: flex;
}
.hp_why .form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
    padding: 32px;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.hp_why .form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--hp-dark);
    text-align: center;
    margin: 0 0 8px;
}
.hp_why .form-card > p {
    color: #4b5563;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 24px;
}
.hp_why-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    color: #6b7280;
}
.hp_why-form-note svg {
    width: 16px;
    height: 16px;
    color: var(--hp-dark);
}
/* Quote form fields: computed styles read directly from base44's live
   EmbeddedQuoteForm.jsx (shadcn/ui Input/Select/Button + Tailwind) —
   36px field height, 6px radius, #e5e5e5 border, 14px text, dark/lime
   uppercase submit button. Field labels/count are unchanged from before. */
.hp_why .form-card form input,
.hp_why .form-card form select,
.hp_why .form-card form textarea {
    margin-top: 0;
}
.hp_why .form-card form .form-control {
    width: 100%;
    padding: 4px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    height: 36px;
    margin-bottom: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.hp_why .form-card form textarea.form-control {
    height: auto;
    min-height: 90px;
    padding: 8px 12px;
}
.hp_why .form-card .form-row.dis_flex {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.hp_why .form-card .form-row.dis_flex .form-group {
    margin-bottom: 0;
}
.hp_why .form-card .div_a,
.hp_why .form-card .div_b {
    flex: 1;
    width: auto;
    margin-right: 0;
}
.hp_why .form-card .form-group {
    margin-bottom: 12px;
}
.hp_why .form-card .sm-txt {
    margin: 0 0 4px;
    font-size: 12px;
    color: #6b7280;
}
.hp_why .form-card .file-group {
    margin-top: 0;
}
.hp_why .form-card .phone-group {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
}
.hp_why .form-card .phone-group .form-control {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.hp_why .form-card .checkbox-group label span {
    font-size: 12px;
    color: #6b7280;
}
.hp_why .form-card #captchaLabel {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}
.hp_why .form-card .btn-submit {
    background: var(--hp-dark);
    color: var(--hp-lime);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 12px;
    border-radius: 6px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.hp_why .form-card .btn-submit:hover {
    background: var(--hp-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ---------- StatsBarSection ---------- */
.hp_stats {
    padding: 30px 0;
    background: #fff;
}
.hp_stats .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4%;
}
.hp_stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--hp-dark);
    border-radius: 20px;
    padding: 28px 24px;
}
.hp_stats-item {
    text-align: center;
}
.hp_stats-item .value {
    font-size: 30px;
    font-weight: 700;
    color: var(--hp-lime);
}
.hp_stats-item .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

/* ---------- PreferredPartnersSection ---------- */
.hp_partners {
    padding: 48px 0;
    background: linear-gradient(135deg, #0c2e16 0%, #1a4a2a 100%);
    position: relative;
    overflow: hidden;
}
.hp_partners-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: var(--hp-lime);
    filter: blur(64px);
    pointer-events: none;
}
.hp_partners-glow--1 {
    top: -80px;
    right: -80px;
    opacity: 0.2;
}
.hp_partners-glow--2 {
    bottom: -80px;
    left: -80px;
    opacity: 0.1;
}
.hp_partners .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hp_partners-head {
    text-align: center;
    margin-bottom: 32px;
}
.hp_partners-head .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hp-lime);
    margin-bottom: 12px;
}
.hp_partners-head .check-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--hp-lime);
    color: var(--hp-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp_partners-head .check-dot svg {
    width: 12px;
    height: 12px;
}
.hp_partners-head h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--hp-lime);
    margin-bottom: 16px;
}
.hp_partners-head .subtitle {
    font-size: 14px;
    font-weight: 400;
    max-width: 672px;
    margin: 0 auto;
    color: #d1fae5;
}
@media (min-width: 768px) {
    .hp_partners-head h2 {
        font-size: 2.25rem;
    }
}
.hp_partners-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}
.hp_partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (min-width: 1024px) {
    .hp_partners-grid {
        grid-template-columns: repeat(
            var(--partners-count, 4),
            minmax(0, 280px)
        );
        justify-content: center;
    }
}
.hp_partner-card {
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition:
        box-shadow 0.3s,
        opacity 0.4s ease,
        transform 0.4s ease;
}
.hp_partner-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.js-anim .hp_partner-card {
    opacity: 0;
    transform: translateY(20px);
}
.js-anim .hp_partner-card.in-view {
    opacity: 1;
    transform: translateY(0);
}
.hp_partner-card-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hp_partner-card-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}
.hp_partner-card:hover .hp_partner-card-img img {
    transform: scale(1.05);
}
.hp_partner-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    text-align: center;
}
.hp_partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--hp-lime);
    color: var(--hp-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
}
.hp_partner-badge svg {
    width: 12px;
    height: 12px;
}
.hp_partner-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    margin: 0;
}
.hp_partner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #0c2e16 0%, #1a4a2a 100%);
    color: var(--hp-lime);
    padding: 10px 0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}
.hp_partner-btn svg {
    width: 14px;
    height: 14px;
}
/* ---------- CityCardsSection (Exhibiting Cities) ---------- */
.hp_cities {
    padding: 48px 0;
    background: #f3f4f6;
}
.hp_cities-head {
    max-width: 1280px;
    margin: 0 auto 32px;
    padding: 0 4%;
    text-align: center;
}
.hp_cities-head .eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hp-dark);
    margin-bottom: 10px;
}
.hp_cities-head h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}
.hp_cities-head .subtitle {
    font-size: 14px;
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto;
}
.hp_cities-row {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hp_cities-row + .hp_cities-row {
    margin-top: 16px;
}
.hp_cities-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
/* --marquee-distance is set from JS to the measured width of one full
   set of (deduplicated + padded) cards, so the loop is always seamless
   regardless of viewport width or how many clones were needed to fill
   it — the base44 reference hardcodes a 50% transform assuming a fixed
   card count, which leaves a visible gap on any screen wider than
   ~1070px (a single un-padded set of 3 cards). See docs/CHANGELOG_DETAILED.md. */
.hp_cities-row--ltr .hp_cities-track {
    animation-name: hpCitiesScrollLTR;
}
.hp_cities-row--rtl .hp_cities-track {
    animation-name: hpCitiesScrollRTL;
}
@keyframes hpCitiesScrollLTR {
    from {
        transform: translateX(calc(-1 * var(--marquee-distance, 50%)));
    }
    to {
        transform: translateX(0);
    }
}
@keyframes hpCitiesScrollRTL {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--marquee-distance, 50%)));
    }
}
.hp_cities-row.paused .hp_cities-track {
    animation-play-state: paused !important;
}
.hp_city-card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 320px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    text-decoration: none;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
}
.hp_city-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}
.hp_city-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.hp_city-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.hp_city-card:hover .hp_city-card-img img {
    transform: scale(1.06);
}
.hp_city-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 46, 22, 0.65) 0%,
        rgba(12, 46, 22, 0.05) 60%
    );
}
.hp_city-card-loc {
    position: absolute;
    bottom: 12px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    z-index: 1;
}
.hp_city-card-loc svg {
    width: 15px;
    height: 15px;
    color: var(--hp-lime);
    flex-shrink: 0;
}
.hp_city-card-loc span.state {
    font-weight: 500;
    font-size: 13px;
    color: #e5e7eb;
}
.hp_city-card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hp_city-card-body p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.hp_city-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: var(--hp-dark);
    color: var(--hp-lime);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.hp_city-card-btn svg {
    width: 14px;
    height: 14px;
}
.hp_cities-cta {
    text-align: center;
    margin-top: 32px;
}
.hp_cities-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hp-dark);
    color: var(--hp-lime);
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.hp_cities-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(12, 46, 22, 0.25);
}

/* ---------- FAQSection ---------- */
.hp_faq {
    padding: 64px 0;
    background: var(--hp-dark);
    position: relative;
    overflow: hidden;
}
.hp_faq .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4%;
    position: relative;
    z-index: 1;
}
.hp_faq-head {
    text-align: center;
    margin-bottom: 40px;
}
.hp_faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(207, 255, 127, 0.1);
    border: 1px solid rgba(207, 255, 127, 0.3);
    color: var(--hp-lime);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.hp_faq-badge svg {
    width: 15px;
    height: 15px;
}
.hp_faq-head h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-lime);
    margin-bottom: 14px;
}
.hp_faq-head .subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 620px;
    margin: 0 auto;
}
/* Overrides the bare global .faq_item/.faq_question/.faq_answer rules
   (light theme, used elsewhere) for the dark FAQ card look. */
.hp_faq .faq_item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(207, 255, 127, 0.1);
    border-radius: 16px;
}
.hp_faq .faq_item.active {
    background: rgba(207, 255, 127, 0.08);
    border-color: rgba(207, 255, 127, 0.4);
}
.hp_faq .faq_question {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}
.hp_faq .faq_item.active .faq_question {
    color: var(--hp-lime);
}
.hp_faq .faq_question:hover {
    background: rgba(255, 255, 255, 0.03);
}
.hp_faq .faq_question h3 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.hp_faq .faq_question .num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(207, 255, 127, 0.1);
    color: var(--hp-lime);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp_faq .faq_item.active .faq_question .num {
    background: var(--hp-lime);
    color: var(--hp-dark);
}
.hp_faq .faq_question .icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(207, 255, 127, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--hp-lime);
}
.hp_faq .faq_item.active .faq_question .icon {
    background: var(--hp-lime);
    color: var(--hp-dark);
}
.hp_faq .faq_answer {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 24px 22px 76px;
}
.hp_faq-cta {
    text-align: center;
    margin-top: 40px;
}
.hp_faq-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}
.hp_faq-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hp-lime);
    color: var(--hp-dark);
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.hp_faq-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 600px) {
    .hp_faq .faq_answer {
        padding-left: 24px;
    }
    .hp_faq .faq_question .num {
        display: none;
    }
}

/* ---------- TestimonialsSection ---------- */
.hp_testimonials {
    padding: 48px 0;
    background: #fff;
    overflow: hidden;
}
.hp_testimonials .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 4%;
}
.hp_testimonials-head {
    text-align: center;
    margin-bottom: 32px;
}
.hp_testimonials-head .eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hp-dark);
    margin-bottom: 10px;
}
.hp_testimonials-head h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-dark);
    margin-bottom: 12px;
}
.hp_testimonials-head .subtitle {
    font-size: 14px;
    color: #6b7280;
}
.hp_testimonials-row {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hp_testimonials-row::before,
.hp_testimonials-row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}
.hp_testimonials-row::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}
.hp_testimonials-row::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}
.hp_testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation-name: hpCitiesScrollLTR;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.hp_testimonials-row.paused .hp_testimonials-track {
    animation-play-state: paused !important;
}
.hp_testimonial-card {
    flex-shrink: 0;
    width: 360px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 4px 24px rgba(12, 46, 22, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hp_testimonial-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.hp_testimonial-card .quote-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--hp-dark);
    color: var(--hp-lime);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp_testimonial-card .quote-icon svg {
    width: 16px;
    height: 16px;
}
.hp_testimonial-card .stars {
    display: flex;
    gap: 2px;
}
.hp_testimonial-card .stars svg {
    width: 14px;
    height: 14px;
    color: #facc15;
}
.hp_testimonial-card .quote {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
    flex: 1;
    margin: 0;
}
.hp_testimonial-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}
.hp_testimonial-card-author .avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--hp-dark);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hp_testimonial-card-author .name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}
.hp_testimonial-card-author .role {
    font-size: 12px;
    color: #9ca3af;
    margin: 2px 0 0;
}
@media (max-width: 600px) {
    .hp_testimonial-card {
        width: 300px;
    }
}

/* ---------- OurServicesSection ---------- */
.hp_services {
    padding: 48px 0;
    background: #f9fafb;
}
.hp_services .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}
.hp_services-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 34px;
}
.hp_services-head .eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hp-dark);
    margin-bottom: 12px;
}
.hp_services-head h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--hp-dark);
    line-height: 1.3;
}
.hp_services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}
.hp_service-item {
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 12px;
    transition:
        background 0.3s,
        border-color 0.3s;
}
.hp_service-item.active {
    background: var(--hp-dark);
    border-color: var(--hp-dark);
}
.hp_service-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
}
.hp_service-item-head .left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hp_service-item-head .num {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    width: 26px;
}
.hp_service-item.active .hp_service-item-head .num {
    color: var(--hp-lime);
}
.hp_service-item-head h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hp-dark);
    margin: 0;
}
.hp_service-item.active .hp_service-item-head h3 {
    color: var(--hp-lime);
}
.hp_service-item-head .subtitle {
    font-size: 12px;
    color: #6b7280;
    margin: 2px 0 0;
}
.hp_service-item.active .hp_service-item-head .subtitle {
    color: rgba(255, 255, 255, 0.6);
}
.hp_service-item-head .toggle {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.3s,
        background 0.3s,
        color 0.3s;
}
.hp_service-item.active .hp_service-item-head .toggle {
    background: var(--hp-lime);
    color: var(--hp-dark);
    transform: rotate(45deg);
}
.hp_service-item-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease-in-out,
        opacity 0.3s ease-in-out;
}
.hp_service-item.active .hp_service-item-body {
    max-height: 400px;
    opacity: 1;
}
.hp_service-item:focus-visible {
    outline: 2px solid var(--hp-dark);
    outline-offset: 2px;
}
.hp_service-item-body-inner {
    padding: 0 20px 20px 62px;
}
.hp_service-item-body-inner p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}
.hp_service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hp_service-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(207, 255, 127, 0.15);
    color: var(--hp-lime);
    border: 1px solid rgba(207, 255, 127, 0.3);
}
.hp_services-visual {
    position: sticky;
    top: 100px;
}
.hp_services-visual-inner {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/3;
}
.hp_services-visual-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition:
        opacity 0.4s ease-in-out,
        transform 0.4s ease-in-out;
}
.hp_services-visual-inner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(12, 46, 22, 0.92) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.hp_services-visual-inner .overlay h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
}
.hp_services-visual-inner .overlay p {
    color: var(--hp-lime);
    font-size: 13px;
    margin: 0;
}
.hp_services-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 22px;
    background: var(--hp-dark);
    color: var(--hp-lime);
    padding: 15px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.hp_services-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(12, 46, 22, 0.25);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hp_usp-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hp_services-grid {
        grid-template-columns: 1fr;
    }
    .hp_services-visual {
        position: static;
        margin-top: 8px;
    }
    .hp_usp-visual {
        margin: 30px 0 0;
    }
}
@media (max-width: 768px) {
    .hp_comparison-grid {
        grid-template-columns: 1fr;
    }
    .hp_stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp_usp-text h2,
    .hp_cities-head h2,
    .hp_services-head h2 {
        font-size: 1.6rem;
    }
    .hp_city-card {
        width: 270px;
    }
}
@media (max-width: 600px) {
    .hp_usp-badge {
        padding: 9px 12px;
    }
    .hp_usp-badge--left {
        left: -10px;
        bottom: -14px;
    }
    .hp_usp-badge--right {
        right: -10px;
        top: -14px;
    }
    .hp_usp-badge .value {
        font-size: 18px;
    }
    .hp_service-item-body-inner {
        padding-left: 20px;
    }
}

/* Quote-button clearance — same 30px/45px pattern used site-wide
   (blog listing page, footer) so left-aligned headings never sit
   under the fixed .quote_btn_left tab. */
.hp_usp .container,
.hp_comparison .container,
.hp_stats .container,
.hp_cities-head,
.hp_services .container,
.hp_partners .container,
.hp_why .container {
    padding: 0 30px;
}
@media (min-width: 768px) {
    .hp_usp .container,
    .hp_comparison .container,
    .hp_stats .container,
    .hp_cities-head,
    .hp_services .container,
    .hp_partners .container,
    .hp_why .container {
        padding: 0 45px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hp_usp-slide,
    .hp_city-card,
    .hp_city-card-img img,
    .hp_service-item-body,
    .hp_service-item-head .toggle,
    .hp_services-visual-inner img,
    .hp_shows-dots button::after,
    .hp_comparison-cta a,
    .hp_cities-cta a,
    .hp_services-cta,
    .hp_partner-card {
        transition: none !important;
    }
    .hp_cities-track {
        animation: none !important;
    }
}
