
    /* ── Hero Word Ticker ── */
.hero-word-ticker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

/* "We help you" pill */
.hero-word-ticker__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #563AFF;
    background: rgba(86, 58, 255, 0.08);
    border: 1px solid rgba(86, 58, 255, 0.22);
    border-radius: 30px;
    padding: 4px 14px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: "Jost", sans-serif;
}

/* Clipping box */
.animation-wrapper {
    display: inline-block;
    width: 200px;
    height: 50vh;
    /*overflow: hidden;*/
    position: relative;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Each word */
.animate {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-bottom: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-family: "Jost", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #563AFF;
    white-space: nowrap;
    /*
      6 words, each offset by 0.5s → total visible cycle = 3s
      duration 3s means each word animates once every 3s
    */
    animation: zoomInFade 3s linear infinite;
}

.animate-1 { animation-delay: -2.5s; }
.animate-2 { animation-delay: -2.0s; }
.animate-3 { animation-delay: -1.5s; }
.animate-4 { animation-delay: -1.0s; }
.animate-5 { animation-delay: -0.5s; }
.animate-6 { animation-delay:  0.0s; }

@keyframes zoomInFade {
    0% {
        transform: scale(0.6);
        opacity: 0;
        top: 100%;
        visibility: hidden;
    }
    50% {
        transform: scale(1);
        opacity: 1;
        top: 50%;
        visibility: visible;
    }
    75% {
        top: 36%;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
        top: 0;
        visibility: hidden;
    }
}

/* ── Logo Marquee ── */
.logo-marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 90px 0 0;
    position: relative;
}

.logo-marquee-label {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    /*color: #9490B5;*/
    margin-bottom: 35px;
    font-family: "Jost", sans-serif;
}

.logo-marquee-track-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Fade edges */
.logo-marquee-track-wrapper::before,
.logo-marquee-track-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-marquee-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F5F4FF, transparent);
}
.logo-marquee-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F5F4FF, transparent);
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: logoScroll 28s linear infinite;
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

.logo-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1;
    /*filter: grayscale(100%);*/
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-marquee-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-marquee-item img {
    height: 35px;
    width: auto;
    max-width: 150px;
    object-fit: fill;
}

@keyframes logoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.odometer .odometer-formatting-mark {
    display: none !important;
}
.odometer-inside {
    display: inline-flex !important;
    align-items: center !important;
}
.odometer-digit {
    display: inline-block !important;
}
.odometer-digit-inner,
.odometer-ribbon,
.odometer-ribbon-inner {
    display: inline-block !important;
}

/*.sentence{*/
/*    color: #222;*/
/*    font-size: 37px;*/
/*    padding: 45px;*/
/*}*/
/*!*Wrapper*!*/
/*.wrapper{*/
/*    font-family: 'Raleway', sans-serif;*/
/*    position: relative;*/
/*}*/

/*.slidingVertical{*/
/*    display: inline;*/
/*    text-indent: 8px;*/
/*}*/
/*.slidingVertical span{*/
/*    animation: topToBottom 15s linear infinite 0s;*/
/*    -ms-animation: topToBottom 12.5s linear infinite 0s;*/
/*    -webkit-animation: topToBottom 12.5s linear infinite 0s;*/
/*    color: #00abe9;*/
/*    opacity: 0;*/
/*    overflow: hidden;*/
/*    position: absolute;*/
/*}*/
/*.slidingVertical span:nth-child(2){*/
/*    animation-delay: 2.5s;*/
/*    -ms-animation-delay: 2.5s;*/
/*    -webkit-animation-delay: 2.5s;*/
/*}*/
/*.slidingVertical span:nth-child(3){*/
/*    animation-delay: 5s;*/
/*    -ms-animation-delay: 5s;*/
/*    -webkit-animation-delay: 5s;*/
/*}*/
/*.slidingVertical span:nth-child(4){*/
/*    animation-delay: 7.5s;*/
/*    -ms-animation-delay: 7.5s;*/
/*    -webkit-animation-delay: 7.5s;*/
/*}*/
/*.slidingVertical span:nth-child(5){*/
/*    animation-delay: 10s;*/
/*    -ms-animation-delay: 10s;*/
/*    -webkit-animation-delay: 10s;*/
/*}*/
/*.slidingVertical span:nth-child(6) {*/
/*    animation-delay: 12.5s;*/
/*    -ms-animation-delay: 12.5s;*/
/*    -webkit-animation-delay: 12.5s;*/
/*}*/

/*@-moz-keyframes topToBottom{*/
/*    0% { opacity: 0; }*/
/*    5% { opacity: 0; -moz-transform: translateY(-50px); }*/
/*    10% { opacity: 1; -moz-transform: translateY(0px); }*/
/*    25% { opacity: 1; -moz-transform: translateY(0px); }*/
/*    30% { opacity: 0; -moz-transform: translateY(50px); }*/
/*    80% { opacity: 0; }*/
/*    100% { opacity: 0; }*/
/*}*/
/*@-webkit-keyframes topToBottom{*/
/*    0% { opacity: 0; }*/
/*    5% { opacity: 0; -webkit-transform: translateY(-50px); }*/
/*    10% { opacity: 1; -webkit-transform: translateY(0px); }*/
/*    25% { opacity: 1; -webkit-transform: translateY(0px); }*/
/*    30% { opacity: 0; -webkit-transform: translateY(50px); }*/
/*    80% { opacity: 0; }*/
/*    100% { opacity: 0; }*/
/*}*/
/*@-ms-keyframes topToBottom{*/
/*    0% { opacity: 0; }*/
/*    5% { opacity: 0; -ms-transform: translateY(-50px); }*/
/*    10% { opacity: 1; -ms-transform: translateY(0px); }*/
/*    25% { opacity: 1; -ms-transform: translateY(0px); }*/
/*    30% { opacity: 0; -ms-transform: translateY(50px); }*/
/*    80% { opacity: 0; }*/
/*    100% { opacity: 0; }*/
/*}*/


.sentence{
    color: #222;
    font-size: 37px;
    padding: 45px;
    text-align: center;
}

.wrapper{
    font-family: 'Raleway', sans-serif;
    position: relative;
}

.slidingVertical{
    display: inline-block;
    position: relative;
    height: 1.2em;
    vertical-align: bottom;
    min-width: 260px;     /* enough for "opportunity." */
}

.slidingVertical span{
    animation: topToBottom 15s linear infinite 0s;
    -ms-animation: topToBottom 15s linear infinite 0s;
    -webkit-animation: topToBottom 15s linear infinite 0s;
    color: rgb(86, 58, 255);
    opacity: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    text-align: left;     /* aligns word right after "with the" */
}

.slidingVertical span:nth-child(2){
    animation-delay: 2.5s;
    -ms-animation-delay: 2.5s;
    -webkit-animation-delay: 2.5s;
}
.slidingVertical span:nth-child(3){
    animation-delay: 5s;
    -ms-animation-delay: 5s;
    -webkit-animation-delay: 5s;
}
.slidingVertical span:nth-child(4){
    animation-delay: 7.5s;
    -ms-animation-delay: 7.5s;
    -webkit-animation-delay: 7.5s;
}
.slidingVertical span:nth-child(5){
    animation-delay: 10s;
    -ms-animation-delay: 10s;
    -webkit-animation-delay: 10s;
}
.slidingVertical span:nth-child(6){
    animation-delay: 12.5s;
    -ms-animation-delay: 12.5s;
    -webkit-animation-delay: 12.5s;
}

@keyframes topToBottom{
    0% { opacity: 0; }
    5% { opacity: 0; transform: translateY(-50px); }
    10% { opacity: 1; transform: translateY(0px); }
    25% { opacity: 1; transform: translateY(0px); }
    30% { opacity: 0; transform: translateY(50px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}
@-moz-keyframes topToBottom{
    0% { opacity: 0; }
    5% { opacity: 0; -moz-transform: translateY(-50px); }
    10% { opacity: 1; -moz-transform: translateY(0px); }
    25% { opacity: 1; -moz-transform: translateY(0px); }
    30% { opacity: 0; -moz-transform: translateY(50px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}
@-webkit-keyframes topToBottom{
    0% { opacity: 0; }
    5% { opacity: 0; -webkit-transform: translateY(-50px); }
    10% { opacity: 1; -webkit-transform: translateY(0px); }
    25% { opacity: 1; -webkit-transform: translateY(0px); }
    30% { opacity: 0; -webkit-transform: translateY(50px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}
@-ms-keyframes topToBottom{
    0% { opacity: 0; }
    5% { opacity: 0; -ms-transform: translateY(-50px); }
    10% { opacity: 1; -ms-transform: translateY(0px); }
    25% { opacity: 1; -ms-transform: translateY(0px); }
    30% { opacity: 0; -ms-transform: translateY(50px); }
    80% { opacity: 0; }
    100% { opacity: 0; }
}

/* GIF arrow pointing toward estimate card */
.hero-estimate-gif {
    position: absolute;
    bottom: -80px;
    right: 166px;
    width: 180px;
    height: auto;
    pointer-events: none;
    user-select: none;
    rotate: 13deg;
}

.hero-estimate-badge {
    position: absolute;
    bottom: -80px;       /* sits just below the arrow */
    right: 10px;          /* aligned with the arrow */
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid #c4b8f8;
    color: #5b21fa;
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 12px rgba(91, 33, 250, 0.10);
    pointer-events: none;
    user-select: none;
    animation: badgeFadeIn 0.5s ease 1.0s both;
}

@keyframes badgeFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* AFTER */
/*.hero-estimate-gif {*/
/*    position: absolute;*/
/*    bottom: -80px;*/
/*    left: 0px;           !* anchors from the left = starts under Get Instant Estimate *!*/
/*    width: 180px;*/
/*    height: auto;*/
/*    pointer-events: none;*/
/*    user-select: none;*/
/*}*/

@media (max-width: 1024px) {
    .hero-estimate-gif {
        display: none; /* hide on tablet/mobile where layout stacks */
    }

    .hero-estimate-badge {
        display: none;
    }
}


/* ── Section wrapper ──────────────────────────────── */
#how-we-work-section {
    position: relative;
    background: #fff;
    padding: 80px 0 0;
}

/* Heading area — scrolls away normally */
.hww-heading {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px 60px;
}
.hww-heading h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #563AFF;
    margin-bottom: 12px;
}
.hww-heading h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}
.hww-heading p {
    font-size: 17px;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── Pin wrapper ──────────────────────────────────── */
/*
   This is the KEY structure:
   #hww-pin-wrapper  — tall container (height = viewport + scroll budget)
                       ScrollTrigger pins its FIRST CHILD to the top
   #hww-panel        — the actual viewport-height sticky panel
   #hww-track        — the wide flex strip that translates horizontally
*/
#hww-pin-wrapper {
    position: relative;
    /* Height set by JS: 100vh + totalShift */
}

#hww-panel {
    overflow: hidden;
    background: #fff;
    padding: 40px 0 50px;
    /* position:sticky applied by JS after load so layout isn't disturbed */
}

#hww-track {
    display: flex;
    align-items: flex-start;
    will-change: transform;
    /* width = STEPS * stepW  — always wider than viewport */
}

/* ── Individual step ──────────────────────────────── */
.hww-step {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width set by JS: window.innerWidth / VISIBLE */
}

.hww-step-label {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    white-space: nowrap;
}

.hww-connector {
    display: flex;
    align-items: center;
    width: 100%;
}

.hww-line {
    flex: 1;
    height: 3px;
    transition: background 0.15s;
    margin: 0 -1px;
}
.hww-line.transparent { background: transparent; }
.hww-line.inactive    { background: #e5e7eb; }

.hww-node {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2.5px solid #d1d5db;
    background: #fff;
    color: #9ca3af;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
    z-index: 2;
}

.hww-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 16px;
}

.hww-tag {
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 13px;
    color: #4b5563;
    white-space: nowrap;
    transition: border-color 0.15s, color 0.15s;
}

/* Active states */
.hww-node.active {
    background: #563AFF;
    border-color: #563AFF;
    color: #fff;
    box-shadow: 0 0 0 5px rgba(86, 58, 255, 0.18);
}
.hww-line.active  { background: #563AFF; }
.hww-tag.active   { border-color: #563AFF; color: #563AFF; }
