:root {
    --blue: #2563eb;
    --orange: #F5A623;
    --dark: #111827;
    --body: #4b5563;
    --muted: #9ca3af;
    --light-muted: #c0c5cc;
    --bg: #FAFBF8;
    --green: #059669;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--dark);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.serif {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
}

/* FADE-IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(.25, .8, .25, 1), transform 0.7s cubic-bezier(.25, .8, .25, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* AVATAR */
.avatar {
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}


/* CARD ANIMATIONS */
.card-hover {
    transition: transform .35s cubic-bezier(.25, .8, .25, 1), box-shadow .35s cubic-bezier(.25, .8, .25, 1);
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .07);
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-logo {
    height: 22px;
}
.nav-logo img{
    display: block;
    width: 100%;
    height: 100%;
}
.nav-cta {
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 24px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.25);
    font-family: inherit;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}


/* HERO */
.hero {
    position: relative;
    padding: 80px 0 0;
    background: var(--bg);
}

.hero-photo-wrap {
    position: relative;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    object-position: 40% 25%;
    border-radius: 24px;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: -48px;
    right: 48px;
    max-width: 420px;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.7);
    z-index: 10;
    animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: var(--green);
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-quote {
    font-size: 21px;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 16px;
}

.hero-quote em {
    font-style: italic;
    color: var(--blue);
}

.hero-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
}

.hero-author-name {
    font-weight: 700;
    font-size: 14px;
}

.hero-author-loc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

.hero-author-badge {
    font-size: 11px;
    color: var(--green);
    font-weight: 500;
}

.hero-store-mini {
    background: var(--bg);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-store-dot {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a3a5c, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.hero-store-name {
    font-weight: 700;
    font-size: 14px;
}

.hero-store-niche {
    font-size: 11px;
    color: var(--muted);
}

.hero-store-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-cta-btn {
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    text-decoration: none;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.hero-subline {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.hero-spacer {
    height: 64px;
    background: var(--bg);
}


/* EDITORIAL STORY */
.story-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--bg);
}

.story-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.story-lead {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 32px;
}

.story-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
}

.story-body p {
    margin-bottom: 24px;
}

.story-body strong {
    color: var(--dark);
    font-weight: 600;
}

.story-accent {
    color: var(--blue);
    font-weight: 600;
}

.story-highlight {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.07), rgba(37, 99, 235, 0.02));
    border-left: 3px solid var(--blue);
    padding: 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.6;
}

.story-cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.story-cta-inline:hover {
    border-color: var(--blue);
}

/* NUMBERS BAR */
.numbers-bar {
    background: var(--dark);
    color: white;
    padding: 48px 40px;
}

.numbers-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.number-val {
    font-size: 38px;
    font-weight: 800;
    color: white;
}

.number-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
    line-height: 1.4;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 40px;
    background: var(--bg);
}

.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.section-eyebrow::before {
    content: '—';
    color: var(--blue);
}

.section-title em {
    font-style: normal;
    color: var(--blue);
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
    line-height: 1.15;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.35s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.08);
}

.testimonial-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--blue);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.testimonial-stars {
    color: var(--orange);
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.testimonial-loc {
    font-size: 12px;
    color: var(--muted);
}

/* HOW IT WORKS */
.how-section {
    padding: 80px 40px;
    background: white;
}

.how-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: all 0.35s;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.06);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
}

.store-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.3px;
}

/* MORE STORES */
.more-stores {
    padding: 80px 40px;
    background: white;
}

.more-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.mini-card {
    background: var(--bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s;
    cursor: pointer;
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.07);
}

.mini-img {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.mini-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
}

.mini-img span {
    position: relative;
    z-index: 2;
    display: block;
    text-align: center;
}

.mini-body {
    padding: 24px;
}

.mini-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.mini-niche {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 16px;
}

.mini-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.mini-revenue {
    font-size: 17px;
    font-weight: 700;
}

.mini-mo {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}

.mini-card-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    text-indent: -200vw;
}

/* TRUST BAR */
.trust-bar {
    padding: 48px 40px;
    background: var(--bg);
    text-align: center;
}

.trust-inner {
    max-width: 900px;
    margin: 0 auto;
}

.trust-text {
    font-size: 11px;
    color: var(--light-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 16px;
    font-weight: 700;
    color: #c8cdd3;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.trust-logo:hover {
    color: var(--body);
}

.trust-scores {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.trust-score {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-score .star {
    color: var(--orange);
}

/* CHECKOUT */
.checkout {
    padding: 80px 40px;
    background: white;
}

.checkout-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.checkout-trust-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 8px 18px 8px 8px;
    margin-bottom: 24px;
}

.checkout-avatars {
    display: flex;
}

.checkout-avatars img {
    margin-left: -7px;
}

.checkout-avatars img:first-child {
    margin-left: 0;
}

.checkout-trust-text {
    font-size: 13px;
    color: var(--body);
}

.checkout-trust-text strong {
    color: var(--dark);
}

.checkout-star {
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
}

.checkout-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d1fae5;
    color: var(--green);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.checkout-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.checkout-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 13px;
    color: var(--body);
}

.checkout-headline {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
}

.checkout-headline em {
    font-style: normal;
    color: var(--blue);
}

.checkout-sub {
    font-size: 15px;
    color: var(--body);
    line-height: 1.6;
    margin-bottom: 24px;
}


/* STORY POPUP — HALF SCREEN */
.story-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.story-popup {
    background: white;
    border-radius: 24px;
    max-width: 640px;
    width: 100%;
    padding: 48px;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(.25, .8, .25, 1);
}

.story-popup-overlay.show .story-popup {
    transform: translateY(0);
}

.story-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.story-popup-close:hover {
    color: var(--dark);
}

.story-popup-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.story-popup-author-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.story-popup-author-name {
    font-weight: 700;
    font-size: 16px;
}

.story-popup-author-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.story-popup-author-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.story-popup-author-badge .popup-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: popup-pulse 1.5s infinite;
}

@keyframes popup-pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

.story-popup-quote {
    font-size: 22px;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.story-popup-quote em {
    font-style: italic;
    color: var(--blue);
}

.story-popup-cheer {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    text-align: center;
}

.story-popup-cheer span {
    color: var(--blue);
}

.story-popup-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.story-popup-input {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark);
    outline: none;
    transition: border-color 0.3s;
}

.story-popup-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.story-popup-input::placeholder {
    color: var(--light-muted);
}

.story-popup-submit {
    width: 100%;
    padding: 16px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.story-popup-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--light-muted);
    margin-top: 16px;
}
.cta-middle{display: flex;flex-direction: column;padding-top: 20px;}
.cta-middle-text{

}
.cta-middle-title{

}
@media (max-width: 768px) {
    .story-popup {
        padding: 28px 20px;
    }

    .story-popup-form {
        grid-template-columns: 1fr;
    }

    .story-popup-quote {
        font-size: 18px;
    }

    .story-popup-author-img {
        width: 56px;
        height: 56px;
    }

    .story-popup-cheer {
        font-size: 15px;
    }
    .cta-middle{

    }
    .cta-middle-text{

    }
    .cta-middle-title{

    }
}

@media (max-width: 480px) {
    .story-popup {
        padding: 24px 16px;
    }

    .story-popup-quote {
        font-size: 16px;
    }

    .story-popup-author-img {
        width: 48px;
        height: 48px;
    }

    .story-popup-author-name {
        font-size: 14px;
    }
    .cta-middle{

    }
    .cta-middle-text{

    }
    .cta-middle-title{

    }
}

.mid-cta-btn {
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 24px;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    font-family: inherit;
    transition: transform 0.3s;
    text-decoration: none;
}

.mid-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

/* FORM */
.form-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.06);
}

.form-steps {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 24px;
}

.form-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.form-step.active {
    background: var(--blue);
    color: white;
}

.form-step.inactive {
    background: #f3f4f6;
    color: var(--muted);
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.form-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.form-input-wrap:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-icon {
    font-size: 16px;
    color: var(--muted);
}

.form-input {
    border: none;
    outline: none;
    font-size: 15px;
    flex: 1;
    font-family: inherit;
    color: var(--dark);
    background: transparent;
}

.form-input::placeholder {
    color: var(--light-muted);
}

.form-phone-prefix {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--body);
    font-weight: 500;
    padding-right: 10px;
    border-right: 1px solid #e5e7eb;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--light-muted);
    font-size: 13px;
}

.form-divider::before, .form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.form-google {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--body);
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    margin-bottom: 20px;
}

.form-google:hover {
    background: #f8f9fa;
}

.form-submit {
    width: 100%;
    padding: 16px;
    margin-top: 24px;
    background: var(--blue);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--light-muted);
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.45);
    padding: 40px;
    text-align: center;
    font-size: 13px;
}

.footer a {
    color: var(--orange);
    text-decoration: none;
}

/* FLOATING CTA */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    transition: transform 0.3s;
}

.floating-cta:hover {
    transform: scale(1.1);
}


/* LARGE SCREENS — 1440px+ (iMac, big monitors) */
@media (min-width: 1440px) {
    .hero-img {
        height: 720px;
    }

    .hero-overlay {
        right: 80px;
        bottom: -56px;
        max-width: 440px;
        padding: 32px;
    }

    .hero-quote {
        font-size: 23px;
    }

    .hero-spacer {
        height: 72px;
    }

    .story-section {
        max-width: 1280px;
        padding: 80px 60px;
    }

    .numbers-inner {
        max-width: 1280px;
    }

    .testimonials-inner {
        max-width: 1280px;
    }

    .how-inner {
        max-width: 1280px;
    }

    .more-inner {
        max-width: 1280px;
    }

    .checkout-inner {
        max-width: 1280px;
    }

    .section-title {
        font-size: 42px;
    }

    .story-lead {
        font-size: 42px;
    }

    .checkout-headline {
        font-size: 42px;
    }

    .testimonials-grid {
        gap: 24px;
    }

    .steps-grid {
        gap: 24px;
    }

    .stores-grid {
        gap: 24px;
        margin-bottom: 60px;
    }
    .cta-middle{

    }
    .cta-middle-text{

    }
    .cta-middle-title{

    }
}

/* TABLET — 769px to 1024px */
@media (max-width: 1024px) {
    .hero-img {
        height: 480px;
    }

    .hero-overlay {
        right: 40px;
        max-width: 360px;
        padding: 24px;
    }

    .hero-quote {
        font-size: 19px;
    }

    .story-section {
        padding: 64px 32px;
    }

    .story-columns {
        gap: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .stores-grid {
        grid-template-columns: 1fr 1fr;
    }

    .checkout-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .story-lead {
        font-size: 32px;
    }

    .checkout-headline {
        font-size: 32px;
    }

    .numbers-inner {
        gap: 24px;
    }

    .nav {
        padding: 14px 24px;
    }

    .testimonials {
        padding: 64px 32px;
    }

    .how-section {
        padding: 64px 32px;
    }

    .more-stores {
        padding: 64px 32px;
    }

    .checkout {
        padding: 64px 32px;
    }

    .numbers-bar {
        padding: 40px 32px;
    }

    .trust-bar {
        padding: 40px 32px;
    }
    .cta-middle{padding: 0;}
    .cta-middle-text{

    }
    .cta-middle-title{

    }
}

/* MOBILE — 768px and below */
@media (max-width: 768px) {
    .hero {
        padding: 70px 0 0;
    }

    .hero-photo-wrap {
        padding: 0 16px;
    }

    .hero-img {
        height: 320px;
        object-position: 40% 30%;
    }

    .hero-overlay {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -30px 16px 0;
        max-width: 100%;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        animation: none;
    }

    .hero-spacer {
        height: 24px;
    }

    .hero-quote {
        font-size: 19px;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-subline {
        font-size: 12px;
    }

    .nav {
        padding: 12px 16px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .story-section {
        padding: 48px 16px;
    }

    .story-lead {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .story-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .numbers-bar {
        padding: 32px 16px;
    }

    .numbers-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .number-val {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .section-eyebrow {
        font-size: 11px;
    }

    .testimonials {
        padding: 48px 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .how-section {
        padding: 48px 16px;
    }

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

    .more-stores {
        padding: 48px 16px;
    }

    .stores-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-bar {
        padding: 32px 16px;
    }

    .trust-logos {
        gap: 20px;
    }

    .checkout {
        padding: 48px 16px;
    }

    .checkout-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .checkout-headline {
        font-size: 26px;
    }

    .checkout-trust-bar {
        flex-wrap: wrap;
    }

    .checkout-tags {
        gap: 6px;
    }

    .form-card {
        padding: 24px;
    }

    .footer {
        padding: 32px 16px;
    }

    .floating-cta {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .store-stats {
        grid-template-columns: 1fr 1fr;
    }

    .mid-cta-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
    .cta-middle a{
        width: max-content;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-middle-text{

    }
    .cta-middle-title{

    }
}
    .cta-middle a{
        width: max-content;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
/* SMALL MOBILE — 480px and below */
@media (max-width: 480px) {
    .hero-img {
        height: 260px;
    }

    .hero-overlay {
        margin: -24px 12px 0;
        padding: 20px;
    }

    .hero-quote {
        font-size: 17px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .hero-store-mini {
        padding: 12px;
        gap: 12px;
    }

    .hero-store-dot {
        width: 32px;
        height: 32px;
        font-size: 8px;
    }

    .section-title {
        font-size: 22px;
    }

    .story-lead {
        font-size: 22px;
    }

    .checkout-headline {
        font-size: 22px;
    }

    .number-val {
        font-size: 24px;
    }

    .numbers-inner {
        gap: 12px;
    }

    .step-card {
        padding: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .form-card {
        padding: 20px;
    }

    .checkout-trust-bar {
        padding: 6px 12px 6px 6px;
        gap: 6px;
    }

    .mid-cta-btn {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
    }
    .cta-middle{display: flex;flex-direction: column;gap: 0px;}
    .cta-middle-text{

    }
    .cta-middle-title{}
}