/* ===== ROOT — Offerpad-inspired palette ===== */
:root {
    --teal:       #2DD4D0;
    --teal-d:     #14B5B0;
    --teal-deep:  #0FBFCB;
    --orange:     #F0732E;
    --orange-d:   #D85F1B;
    --ink:        #0B1220;
    --ink-soft:   #2A3B50;
    --ink-mute:   #5B6B82;
    --cream:      #FFFCF6;
    --cream-d:    #FAF5EB;
    --line:       #E6E1D6;
    --navy:       #1F2D40;
    --navy-d:     #16202F;
    --paper:      #FFFFFF;
    --shadow:     0 12px 32px rgba(11, 18, 32, 0.10);
    --shadow-lg:  0 24px 60px rgba(11, 18, 32, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.v2-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== REVEAL ANIMATION (text slides up + fades in) ===== */
.has-js .v2-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.has-js .v2-reveal.is-in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .has-js .v2-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ===== UTILITY BAR ===== */
.v2-utility-bar {
    background: var(--orange);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.v2-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
}
.v2-utility-text { letter-spacing: 0.2px; }
.v2-utility-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}
.v2-utility-phone-ico { font-size: 14px; }

/* ===== HEADER ===== */
.v2-header {
    background: var(--paper);
    border-bottom: 2px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}
.v2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 24px;
}
.v2-logo img {
    height: 44px;
    width: auto;
    display: block;
}
.v2-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
.v2-nav a {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.15s;
}
.v2-nav a:hover { color: var(--teal-d); }

.v2-hamburger {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}
.v2-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s;
}
.v2-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 16px 24px;
}
.v2-mobile-menu a {
    padding: 12px 0;
    font-weight: 700;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.v2-mobile-menu a:last-child { border-bottom: none; }
.v2-mobile-phone {
    color: var(--orange) !important;
    font-size: 18px !important;
    margin-top: 4px;
}
.v2-mobile-menu.is-open { display: flex; }

/* ===== HERO ===== */
.v2-hero {
    position: relative;
    min-height: 640px;
    color: #fff;
    overflow: hidden;
}
.v2-hero-photo-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.v2-hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}
.v2-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 14, 28, 0.35) 0%, rgba(8, 14, 28, 0.55) 60%, rgba(8, 14, 28, 0.78) 100%);
}
.v2-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.v2-hero-title {
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 0.95;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.v2-hero-line {
    font-size: clamp(26px, 5.0vw, 64px);
    white-space: nowrap;
}
/* heading: Bowlby One. Double class so it beats .v2-cb (Chango) which is later in the file */
.v2-hero-line.v2-cb {
    font-family: 'Bowlby One', sans-serif;
    letter-spacing: 0.16em;
    word-spacing: 0.14em;
}
/* hero heading shadow: offset down-right, not deep-down (so it does not blend) */
.v2-hero-line.v2-cb::before {
    transform: translate(0.085em, 0.085em);
}

.v2-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}
.v2-hero-pill {
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* Form zone */
.v2-hero-form-zone {
    width: 100%;
    max-width: 720px;
    position: relative;
    margin-top: 22px;
}
.v2-hero-scribble {
    position: absolute;
    left: 10px;
    bottom: calc(100% + 6px);
    width: 250px;
    height: 96px;
    pointer-events: none;
    z-index: 4;
}
.v2-hero-scribble-text {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 29px;
    color: var(--teal);
    transform: rotate(-6deg);
    transform-origin: left top;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.04;
    text-align: left;
}
.v2-hero-scribble-arrow {
    position: absolute;
    right: 8px;
    bottom: 0;
    width: 44px;
    height: 50px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.v2-hero-form { width: 100%; }

.v2-pill {
    display: flex;
    align-items: center;
    background: #fff;
    border: 4px solid var(--orange);
    border-radius: 999px;
    padding: 6px 26px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    gap: 12px;
    margin-bottom: 14px;
}
.v2-pill-ico {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
.v2-pill-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 17px;
    color: var(--ink);
    padding: 15px 0;
    min-width: 0;
}
.v2-pill-input::placeholder {
    color: #94A3B8;
    font-weight: 500;
}

/* START button — standalone, centered below the bars, playful pulse */
.v2-pill-btn {
    display: block;
    margin: 18px auto 0;
    border: none;
    background: var(--orange);
    color: #fff;
    font-family: 'Lilita One', sans-serif;
    font-size: 24px;
    letter-spacing: 2.5px;
    padding: 16px 60px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(240, 115, 46, 0.5);
    animation: v2StartPulse 1.8s ease-in-out infinite;
}
.v2-pill-btn:hover {
    background: var(--orange-d);
    animation-play-state: paused;
    transform: scale(1.05);
}
@keyframes v2StartPulse {
    0%, 55%, 100% { transform: scale(1); box-shadow: 0 12px 26px rgba(240, 115, 46, 0.5); }
    68% { transform: scale(1.07) translateY(-2px); box-shadow: 0 18px 36px rgba(240, 115, 46, 0.62); }
    80% { transform: scale(0.98); }
    90% { transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
    .v2-pill-btn { animation: none; }
}

.v2-form-error {
    color: #ffd6c4;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    min-height: 18px;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== HELP SECTION ===== */
.v2-help {
    background: var(--cream);
    padding: 60px 0 64px;
}
.v2-help-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1480px;
}
.v2-help-title {
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}
.v2-help-title-black {
    font-size: clamp(12px, 4.1vw, 62px);
    color: var(--ink);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.v2-help-title-3 {
    font-size: clamp(28px, 5.8vw, 74px);
    margin-top: 6px;
}

/* video block — frame + side arrows */
.v2-help-video {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto 40px;
}
.v2-help-frame {
    position: relative;
    width: 100%;
    border: 10px solid var(--teal);
    border-radius: 12px;
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow-lg);
}
.v2-help-frame img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 4px;
}
.v2-help-vid {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
}
.v2-help-vid video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.v2-help-sign {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    font-family: 'Lilita One', sans-serif;
    line-height: 1;
    text-align: center;
    transform: rotate(-4deg);
}
.v2-help-sign-line1 {
    display: block;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.v2-help-sign-line2 {
    display: block;
    font-size: 28px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}
.v2-help-sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 720px;
    line-height: 1.55;
}

/* ===== SECTION TITLES ===== */
.v2-section { padding: 60px 0; }
.v2-section-title {
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
}
.v2-section-title-1 {
    font-size: clamp(34px, 5vw, 58px);
    color: var(--ink);
}
.v2-section-title-2 {
    font-size: clamp(40px, 6vw, 72px);
    margin-top: 6px;
}

/* ===== HOW IT WORKS ===== */
.v2-how { background: var(--paper); padding-top: 24px; }
.v2-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
}
.v2-step {
    background: var(--cream);
    border: 3px solid var(--ink);
    border-radius: 18px;
    padding: 36px 28px 32px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 6px 6px 0 var(--teal);
}
.v2-step:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--teal);
}
.v2-step-num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--orange);
    color: #fff;
    border: 3px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lilita One', sans-serif;
    font-size: 20px;
}
.v2-step-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 12px auto 18px;
}
.v2-step-icon-wrap svg {
    width: 100%;
    height: 100%;
}
.v2-step h3 {
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.v2-step p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
}

/* ===== CTA BUTTON (orange chunky) ===== */
.v2-cta-row {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.v2-cta-btn {
    background: var(--orange);
    color: #fff;
    border: 3px solid var(--ink);
    border-radius: 999px;
    font-family: 'Lilita One', sans-serif;
    font-size: 18px;
    letter-spacing: 1.5px;
    padding: 18px 38px;
    cursor: pointer;
    box-shadow: 5px 5px 0 var(--ink);
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.v2-cta-btn:hover {
    background: var(--orange-d);
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--ink);
}
.v2-cta-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--ink);
}
.v2-cta-btn-lg {
    font-size: 22px;
    padding: 22px 48px;
}

/* ===== TRUST STRIP ===== */
.v2-trust {
    background: var(--teal);
    padding: 28px 0;
}
.v2-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0 24px;
}
.v2-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}
.v2-trust-big {
    font-family: 'Lilita One', sans-serif;
    font-size: 42px;
    line-height: 1;
    color: #fff;
}
.v2-trust-stars {
    color: #FFE066;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1;
}
.v2-trust-cap {
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.95);
}
.v2-trust-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
}
.v2-trust-bbb {
    height: 56px;
    width: auto;
}

/* ===== WHY STERLING ===== */
.v2-why { background: var(--cream); }
.v2-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
}
.v2-why-card {
    background: var(--paper);
    border: 3px solid var(--ink);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 5px 5px 0 var(--orange);
    transition: transform 0.2s, box-shadow 0.2s;
}
.v2-why-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--orange);
}
.v2-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 16px;
}
.v2-why-icon-teal { background: var(--teal-d); }
.v2-why-icon-orange { background: var(--orange); }
.v2-why-card h4 {
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.4px;
}
.v2-why-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
}

/* ===== REVIEWS ===== */
.v2-reviews { background: var(--paper); }
.v2-reviews-head {
    position: relative;
    margin-bottom: 50px;
}
.v2-scribble-reviews {
    position: absolute;
    top: 60px;
    right: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.v2-scribble-reviews span {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 26px;
    color: var(--teal-d);
    transform: rotate(8deg);
    white-space: nowrap;
}
.v2-scribble-reviews svg {
    width: 70px;
    height: 44px;
    margin-top: -6px;
    margin-right: 30px;
}
.v2-review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}
.v2-review {
    background: var(--cream);
    border: 3px solid var(--ink);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 5px 5px 0 var(--teal);
}
.v2-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.v2-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v2-review-name {
    font-weight: 700;
    color: var(--ink);
    font-size: 15px;
    /* Reviewers didn't consent to be named on the page: blur for privacy,
       while keeping the avatar + stars so the review still reads as real. */
    filter: blur(4.5px);
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}
.v2-review-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-mute);
    font-size: 12px;
    margin-top: 2px;
}
.v2-review-google {
    width: 14px;
    height: 14px;
}
.v2-review-stars {
    color: #FFA500;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.v2-review-text {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ===== COMPARE ===== */
.v2-compare { background: var(--cream); }
.v2-compare-card {
    background: var(--paper);
    border: 3px solid var(--ink);
    border-radius: 18px;
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
    box-shadow: 6px 6px 0 var(--teal);
}
.v2-compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    border-bottom: 2px solid var(--line);
}
.v2-compare-row:last-child { border-bottom: none; }
.v2-compare-row > div {
    padding: 18px 22px;
    font-size: 15px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
}
.v2-compare-label { font-weight: 700; color: var(--ink); }
.v2-compare-head {
    background: var(--ink);
    color: #fff;
}
.v2-compare-head > div {
    font-family: 'Lilita One', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 16px 22px;
    border-right: 2px solid rgba(255, 255, 255, 0.15);
}
.v2-compare-head > div:last-child { border-right: none; }
.v2-compare-head .v2-compare-ours {
    background: var(--orange);
}
.v2-compare-row .v2-compare-ours {
    background: rgba(45, 212, 208, 0.08);
    font-weight: 700;
    color: var(--teal-d);
}
.v2-compare-row .v2-compare-them { color: var(--ink-mute); }

/* ===== FAQ ===== */
.v2-faq { background: var(--paper); }
.v2-faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}
.v2-faq-item {
    background: var(--cream);
    border: 3px solid var(--ink);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 4px 4px 0 var(--teal);
}
.v2-faq-item summary {
    padding: 18px 22px;
    font-family: 'Lilita One', sans-serif;
    font-size: 18px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding-right: 56px;
}
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--orange);
    font-weight: 700;
    transition: transform 0.2s;
    line-height: 1;
}
.v2-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.v2-faq-item p {
    padding: 0 22px 18px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.v2-final {
    background: var(--teal);
    padding: 64px 0;
    color: #fff;
}
.v2-final-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.v2-final-title {
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.v2-final-title-1 {
    font-size: clamp(36px, 5.5vw, 64px);
    color: #fff;
}
.v2-final-title-2 {
    font-size: clamp(48px, 7vw, 88px);
    margin-top: 6px;
}
.v2-final-sub {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    font-weight: 500;
}
.v2-final-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.v2-final-phone {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.v2-footer {
    background: var(--navy);
    color: #fff;
    padding: 0 0 24px;
}
.v2-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.v2-footer-brand {
    color: rgba(255, 255, 255, 0.85);
}
.v2-footer-logo {
    height: 50px;
    width: auto;
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}
.v2-footer-tag {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}
.v2-footer-col h4 {
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 18px;
    text-transform: uppercase;
}
.v2-footer-col a,
.v2-footer-col p {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.15s;
}
.v2-footer-col a:hover { color: var(--teal); }
.v2-footer-addr {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px !important;
    margin-top: 4px !important;
}
.v2-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}
.v2-footer-legal {
    display: flex;
    gap: 20px;
}
.v2-footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.15s;
}
.v2-footer-legal a:hover { color: var(--teal); }

/* ===== CARDBOARD TEXT (hatched offset shadow) ===== */
.v2-cb {
    position: relative;
    display: inline-block;
    align-self: center;
    max-width: 100%;
    z-index: 0;
    font-family: 'Chango', 'Lilita One', sans-serif;
    -webkit-text-stroke: 0.062em #141414;
    paint-order: stroke;
}
.v2-cb::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0.085em, 0.11em);
    z-index: -1;
    -webkit-text-stroke: 0.062em #141414;
    paint-order: stroke;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    pointer-events: none;
}
.v2-cb--white { color: #fff; }
.v2-cb--white::before {
    background-image: repeating-linear-gradient(45deg, #1a1a1a 0 1.6px, #ffffff 1.6px 4.6px);
}
.v2-cb--teal { color: var(--teal); }
.v2-cb--teal::before {
    background-image: repeating-linear-gradient(45deg, #0c7d7a 0 1.6px,#1ec4c0 1.6px 4.6px);
}
.v2-cb--green { color: #5B9A4D; }
.v2-cb--green::before {
    background-image: repeating-linear-gradient(45deg, #3A6B2E 0 1.6px,#6FA85C 1.6px 4.6px);
}
.v2-cb--orange { color: var(--orange); }
.v2-cb--orange::before {
    background-image: repeating-linear-gradient(45deg, #b34f15 0 1.6px,#f4843c 1.6px 4.6px);
}

/* ===== HERO CHECK BOX ===== */
.v2-hero-checks {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.80);
    border-radius: 0;
    padding: 20px 28px 20px 22px;
    margin-bottom: 70px;
}
.v2-hero-check {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #1a1a1a;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0.1px;
}
.v2-check-ico {
    width: 40px;
    height: 33px;
    flex-shrink: 0;
}
.v2-check-ico path {
    fill: none;
    stroke-linejoin: miter;
    stroke-miterlimit: 5;
}
.v2-check-out { stroke: #141414; stroke-width: 16; stroke-linecap: square; }

/* ===== HOW IT WORKS — sketch flow ===== */
.v2-how .v2-section-title { margin-bottom: 32px; }
.v2-how .v2-section-title-1 {
    font-size: clamp(38px, 7.8vw, 90px);
    letter-spacing: 3px;
}
.v2-how-title-2 {
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 5.6vw, 68px);
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
}
.v2-flow-img-wrap {
    /* match the reference: ~12% page margin each side */
    width: 76vw;
    max-width: 76vw;
    margin-left: calc(50% - 38vw);
    margin-right: calc(50% - 38vw);
    padding: 0;
    box-sizing: border-box;
}
.v2-flow-img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== GET SOLD NOW (benefits) ===== */
.v2-benefits {
    padding: 44px 0 56px;
    margin-bottom: 48px;           /* gap before the teal trust bar */
    background: #FEE8DA;            /* exact peach from the icon art so crops blend seamlessly */
    overflow: hidden;              /* never let icons/captions cause horizontal scroll */
}
.v2-benefits-title {
    text-align: center;
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    font-size: clamp(22px, 3.6vw, 40px);
    margin: 0 auto 24px;
    padding: 0 20px;
    max-width: 1000px;
    text-wrap: balance;
}
/* desktop: 4 columns, icon above centered text */
.v2-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 1180px;
    margin: 0 auto;
}
.v2-benefit {
    text-align: center;
}
.v2-benefit-ico {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 4px;
}
.v2-benefit h3 {
    font-family: 'Lilita One', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1C84B0;
    font-size: clamp(15px, 1.5vw, 20px);
    margin: 0 0 7px;
}
.v2-benefit p {
    color: var(--ink);
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.45;
    margin: 0;
}
/* mobile: single column, each item stacked + centered (icon, title, text) */
@media (max-width: 700px) {
    /* vertical How-it-works image on mobile: wider, centered, no forced ratio */
    .v2-flow-img-wrap {
        width: 88vw;
        max-width: 88vw;
        margin-left: calc(50% - 44vw);
        margin-right: calc(50% - 44vw);
    }
    .v2-flow-img { max-width: 420px; margin: 0 auto; }

    /* hide the "GET SOLD NOW" benefits strip on mobile only */
    .v2-benefits { display: none; }

    .v2-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 360px;
    }
    .v2-benefit {
        text-align: center;
    }
    .v2-benefit-ico {
        width: 78%;
        max-width: 300px;
        margin: 0 auto 4px;
    }
    .v2-benefit h3 { font-size: 18px; }
    .v2-benefit p  { font-size: 16px; max-width: 300px; margin-left: auto; margin-right: auto; }
    .v2-benefits-title {
        font-size: clamp(28px, 9vw, 40px);
        line-height: 1.2;
        max-width: 320px;
    }
}
.v2-flow-card {
    position: relative;
    flex: 1 1 0;
    background: #fff;
    border: 3px solid var(--ink);
    border-radius: 10px;
    padding: 22px 14px 18px;
    text-align: center;
    font-family: 'Lilita One', sans-serif;
    font-size: 17px;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--ink);
    box-shadow: 4px 4px 0 rgba(11, 18, 32, 0.85);
}
.v2-flow-card:nth-child(1) { transform: rotate(-1.5deg); }
.v2-flow-card:nth-child(3) { transform: rotate(1.5deg); }
.v2-flow-card:nth-child(5) { transform: rotate(-1deg); }
.v2-flow-card-sold {
    background: var(--teal);
    color: #fff;
    border-color: var(--ink);
}
.v2-flow-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--orange);
    color: #fff;
    border: 2px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.v2-flow-arrow {
    flex: 0 0 64px;
    width: 64px;
    height: 40px;
}

/* ===== FINAL CTA doodle arrow ===== */
.v2-final-doodle {
    width: 120px;
    height: 70px;
    margin: 6px auto 0;
    display: block;
}

/* ===== FOOTER COLOR STRIPE ===== */
.v2-footer-stripe {
    height: 8px;
    width: 100%;
    background: linear-gradient(90deg,
        var(--orange) 0 25%,
        #9fb0c4 25% 50%,
        var(--teal) 50% 75%,
        #FFD23F 75% 100%);
    margin-bottom: 48px;
}

/* ===== GOOGLE PLACES DROPDOWN (mobile tap fix) ===== */
.pac-container {
    z-index: 99999 !important;
    border-radius: 12px !important;
    margin-top: 6px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25) !important;
    border: 2px solid var(--teal) !important;
    font-family: 'Inter', sans-serif !important;
    overflow: hidden;
}
.pac-item {
    padding: 12px 16px !important;
    font-size: 15px !important;
    border-top: 1px solid #F1F5F9 !important;
    cursor: pointer !important;
}
.pac-item:first-child { border-top: none !important; }
.pac-item:hover,
.pac-item-selected { background: #F1FAFA !important; }
.pac-item * {
    pointer-events: none !important;
}
.pac-icon { display: none !important; }
.pac-item-query {
    font-size: 15px !important;
    color: var(--ink) !important;
    font-weight: 600 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .v2-nav { display: none; }
    .v2-hamburger { display: flex; }

    .v2-hero { min-height: auto; }
    .v2-hero-content { padding: 60px 20px 38px; }
    .v2-hero-checks { margin-bottom: 18px; padding: 14px 18px; gap: 4px; }
    .v2-hero-check { font-size: 17px; gap: 10px; }
    .v2-check-ico { width: 32px; height: 26px; }
    .v2-check-out { stroke-width: 16; }
    .v2-hero-scribble {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        height: auto;
        margin: 0 auto 10px;
        text-align: center;
    }
    .v2-hero-scribble-text {
        position: static;
        display: inline-block;
        font-size: 23px;
    }
    .v2-hero-scribble-arrow { display: none; }

    .v2-steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .v2-flow {
        flex-direction: column;
        gap: 4px;
        padding: 28px 18px;
        border-radius: 18px;
    }
    .v2-flow-card {
        width: 100%;
        flex: none;
    }
    .v2-flow-arrow {
        transform: rotate(90deg);
        flex: none;
        height: 34px;
    }

    .v2-trust-inner { gap: 20px; }
    .v2-trust-divider { display: none; }

    .v2-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v2-review-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .v2-scribble-reviews { display: none; }

    .v2-compare-row {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
    .v2-compare-row > div { padding: 14px 12px; font-size: 13.5px; }
    .v2-compare-head > div { padding: 12px; font-size: 13px; }

    .v2-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .v2-footer-brand { grid-column: 1 / -1; }
    .v2-footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
    .v2-utility-text {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-right: 10px;
    }
    .v2-utility-phone { font-size: 12px; flex-shrink: 0; }

    .v2-logo img { height: 36px; }

    .v2-hero-content { padding: 50px 16px 32px; }
    .v2-hero-pill { font-size: 12px; padding: 7px 14px; }
    .v2-hero-line {
        white-space: normal;
        font-size: clamp(28px, 11vw, 48px);
        letter-spacing: 0.01em;
    }

    .v2-pill {
        padding: 4px 18px;
        gap: 8px;
        border-width: 3px;
    }
    .v2-pill-ico { width: 22px; height: 22px; }
    .v2-pill-input {
        padding: 13px 0;
        font-size: 16px;
    }
    .v2-pill-btn {
        width: 100%;
        padding: 15px;
        font-size: 21px;
    }

    .v2-how .v2-section-title-1 { letter-spacing: 1px; }
    .v2-how-title-2 { letter-spacing: 1px; }

    .v2-help { padding: 60px 0 8px; }
    .v2-how { padding-top: 0; }
    .v2-help-title-black { font-size: clamp(11px, 3.6vw, 22px); }
    .v2-help-title-3 { font-size: clamp(18px, 6.2vw, 38px); }
    .v2-help-frame { border-width: 6px; }
    .v2-help-sign {
        top: 12px;
        right: 12px;
        padding: 10px 14px;
    }
    .v2-help-sign-line1 { font-size: 13px; }
    .v2-help-sign-line2 { font-size: 22px; }
    .v2-help-sub { font-size: 16px; }

    .v2-section { padding: 60px 0; }

    .v2-step { padding: 30px 20px 26px; }
    .v2-step h3 { font-size: 18px; }
    .v2-step p { font-size: 14px; }

    .v2-trust-big { font-size: 32px; }
    .v2-trust-cap { font-size: 12px; }
    .v2-trust-bbb { height: 44px; }

    .v2-why-card { padding: 26px 22px; }
    .v2-why-card h4 { font-size: 18px; }

    .v2-compare-row { grid-template-columns: 1.3fr 1fr 1fr; }
    .v2-compare-row > div { padding: 12px 8px; font-size: 12.5px; }
    .v2-compare-head > div { padding: 10px 8px; font-size: 11.5px; }

    .v2-faq-item summary { font-size: 15px; padding: 16px 18px; padding-right: 48px; }
    .v2-faq-item p { font-size: 14px; padding: 0 18px 16px; }

    .v2-final-sub { font-size: 16px; }
    .v2-cta-btn-lg { font-size: 18px; padding: 18px 32px; }

    .v2-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .v2-footer-brand { grid-column: 1; }
}

/* ===== /offer/ additions: name field, honeypot, TCPA consent, trust line ===== */
.v2-hp {
    position: absolute !important;
    left: -9999px !important;
    top: auto;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}
.v2-consent {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    margin: 0.2rem 0.25rem 0.1rem;
    font-size: 0.72rem;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    text-align: left;
    cursor: pointer;
}
.v2-consent input {
    margin-top: 0.15rem;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    accent-color: #F0732E;
    cursor: pointer;
}
.v2-consent a { color: #4fe0ea; text-decoration: underline; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); }
.v2-trust-cap-lg {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 18ch;
    display: block;
}

