// ...existing code...
#seo-checklist * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#seo-checklist {
    --primary: rgb(46, 139, 87);
    --primary-hover: rgb(30, 86, 54);
    --secondary: rgb(241, 102, 105);
    --secondary-hover: rgb(238, 68, 72);
    --ls-bg: #f6f8f9;
    --ls-surface: #ffffff;
    --ls-surface-alt: #f2f8f4;
    --ls-surface-muted: #eef3f0;
    --ls-heading: #1b2124;
    --ls-text: #5d6a85;
    --ls-muted: #748296;
    --ls-border: rgba(46, 139, 87, 0.14);
    --ls-border-strong: rgba(46, 139, 87, 0.28);
    --ls-shadow-soft: 0 18px 48px rgba(24, 56, 38, 0.08);
    --ls-shadow-card: 0 12px 32px rgba(24, 56, 38, 0.08);
    --ls-highlight: rgba(46, 139, 87, 0.08);
    --ls-radius-lg: 24px;
    --ls-radius-md: 18px;
    --ls-radius-sm: 12px;
}


/* body {
           font-family: 'Inter', 'Satoshi-Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
           color: var(--ls-text);
           background: var(--ls-bg);
           line-height: 1.65;
           -webkit-font-smoothing: antialiased;
       }
        */

#seo-checklist .container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

#seo-checklist .container-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

#seo-checklist section {
    padding: 40px 0;
}

@media (min-width: 640px) {
    #seo-checklist section {
        padding: 60px 0;
    }
}

@media (min-width: 1024px) {
    #seo-checklist section {
        padding: 80px 0;
    }
}


/* Hero Section */

#seo-checklist .hero {
    padding: clamp(4rem, 9vw, 6rem) 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.12), rgba(241, 102, 105, 0.08));
}

#seo-checklist .hero-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
    opacity: 0.95;
}

@media (max-width: 640px) {
    #seo-checklist .hero-logo {
        max-width: 150px;
        margin-bottom: 24px;
    }
}

#seo-checklist .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

@keyframes badgePulse {
    0%,
    100% {
        box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(46, 139, 87, 0.5), 0 0 0 4px rgba(46, 139, 87, 0.1);
    }
}

#seo-checklist h1 {
    font-size: clamp(2.2rem, 3.2vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--ls-heading);
}

#seo-checklist .subheadline {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ls-text);
    margin-bottom: 32px;
    line-height: 1.65;
}

#seo-checklist .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 18px 40px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(46, 139, 87, 0.25);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

#seo-checklist .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

#seo-checklist .btn-primary:hover::before {
    left: 100%;
}

#seo-checklist .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(30, 86, 54, 0.35), 0 0 0 4px rgba(46, 139, 87, 0.1);
}

#seo-checklist .btn-primary:active {
    transform: translateY(0);
}

#seo-checklist .btn-primary:active {
    transform: translateY(0);
}

#seo-checklist .trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--ls-muted);
}

#seo-checklist .trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(46, 139, 87, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(46, 139, 87, 0.15);
    transition: all 0.2s ease;
    font-weight: 500;
}

#seo-checklist .trust-badges span:hover {
    background: rgba(46, 139, 87, 0.12);
    transform: translateY(-2px);
}

#seo-checklist .trust-badges span::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

@media (min-width: 1024px) {
    #seo-checklist .trust-badges {
        gap: 20px;
        margin-top: 40px;
    }
    #seo-checklist .trust-badges span {
        padding: 12px 24px;
        font-size: 15px;
    }
}


/* Problem Cards */

#seo-checklist .problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

#seo-checklist .problem-card {
    background: var(--ls-surface);
    padding: 20px;
    border-radius: var(--ls-radius-md);
    border: 1px solid var(--ls-border);
    box-shadow: var(--ls-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

#seo-checklist .problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.25s ease;
}

#seo-checklist .problem-card:hover::before {
    opacity: 1;
}

#seo-checklist .problem-card:hover {
    transform: translateY(-6px);
    border-color: var(--ls-border-strong);
    box-shadow: 0 20px 40px rgba(24, 56, 38, 0.12);
}

#seo-checklist .problem-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ls-heading);
}

#seo-checklist .problem-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 139, 87, 0.12);
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(46, 139, 87, 0.2);
}

#seo-checklist .problem-icon i {
    line-height: 1;
}

#seo-checklist .problem-card p {
    color: var(--ls-text);
    font-size: 14px;
    line-height: 1.65;
}

#seo-checklist .problem-source {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ls-muted);
}

@media (min-width: 640px) {
    #seo-checklist .problem-grid {
        gap: 20px;
        margin-top: 32px;
    }
    #seo-checklist .problem-card {
        padding: 24px;
    }
    #seo-checklist .problem-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        gap: 10px;
    }
    #seo-checklist .problem-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (min-width: 768px) {
    #seo-checklist .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #seo-checklist .problem-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 40px;
    }
    #seo-checklist .problem-card {
        padding: 28px;
    }
    #seo-checklist .problem-card h3 {
        font-size: 17px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    #seo-checklist .problem-card h3::first-letter {
        font-size: 24px;
    }
}


/* Checklist Section */

#seo-checklist .checklist-preview {
    background: var(--ls-surface);
    border-radius: var(--ls-radius-md);
    border: 1px solid var(--ls-border);
    padding: 16px;
    margin: 24px auto;
    max-width: 700px;
    position: relative;
    overflow: hidden;
    max-height: 320px;
    box-shadow: var(--ls-shadow-card);
}

#seo-checklist .checklist-scroll {
    animation: scroll 30s linear infinite;
    filter: blur(2px);
    opacity: 0.6;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

#seo-checklist .checklist-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    gap: 12px;
}

#seo-checklist .lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--ls-surface);
    padding: 20px 24px;
    border-radius: var(--ls-radius-md);
    border: 1px solid var(--ls-border);
    box-shadow: var(--ls-shadow-soft);
    text-align: center;
    z-index: 10;
    width: calc(100% - 48px);
    max-width: 280px;
}

#seo-checklist .lock-overlay strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--primary);
    font-weight: 700;
}

#seo-checklist .lock-overlay div {
    font-size: 13px !important;
}


/* Estimate stats row */

#seo-checklist .estimate-stats {
    text-align: center;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

#seo-checklist .estimate-stats p {
    font-size: 15px;
    color: var(--ls-text);
}

#seo-checklist .estimate-divider {
    display: none;
}

@media (min-width: 640px) {
    #seo-checklist .checklist-preview {
        padding: 24px;
        margin: 40px auto;
        max-height: 400px;
    }
    #seo-checklist .checklist-item {
        padding: 12px 0;
        font-size: 14px;
    }
    #seo-checklist .lock-overlay {
        padding: 24px 40px;
        width: auto;
        max-width: none;
    }
    #seo-checklist .lock-overlay strong {
        font-size: 18px;
        margin-bottom: 8px;
    }
    #seo-checklist .lock-overlay div {
        font-size: 14px !important;
    }
    #seo-checklist .estimate-stats {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        margin-top: 32px;
    }
    #seo-checklist .estimate-stats p {
        font-size: 16px;
    }
    #seo-checklist .estimate-divider {
        display: block;
    }
}

@media (min-width: 1024px) {
    #seo-checklist .lock-overlay {
        padding: 28px 48px;
    }
    #seo-checklist .lock-overlay strong {
        font-size: 20px;
    }
    #seo-checklist .estimate-stats {
        gap: 32px;
    }
}

#seo-checklist .choice-box {
    background: var(--ls-highlight);
    border: 1px solid var(--ls-border-strong);
    border-radius: var(--ls-radius-md);
    padding: 20px;
    margin: 24px auto;
    max-width: 600px;
}

#seo-checklist .choice-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--ls-heading);
    font-weight: 700;
}

#seo-checklist .choice-box ol {
    margin-left: 20px;
    line-height: 1.8;
}

#seo-checklist .choice-box li {
    margin-bottom: 8px;
    font-size: 15px;
}

@media (min-width: 640px) {
    #seo-checklist .choice-box {
        padding: 24px;
        margin: 32px auto;
    }
    #seo-checklist .choice-box h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    #seo-checklist .choice-box li {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    #seo-checklist .choice-box {
        padding: 32px;
        margin: 40px auto;
    }
    #seo-checklist .choice-box h3 {
        font-size: 22px;
    }
    #seo-checklist .choice-box li {
        font-size: 17px;
    }
}


/* Stats Row */

#seo-checklist .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#seo-checklist .stat-card {
    background: var(--ls-surface);
    padding: 16px 12px;
    border-radius: var(--ls-radius-sm);
    text-align: center;
    border: 1px solid var(--ls-border);
    box-shadow: var(--ls-shadow-card);
    position: relative;
    transition: all 0.3s ease;
}

#seo-checklist .stat-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#seo-checklist .stat-card:hover::after {
    opacity: 1;
}

#seo-checklist .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(24, 56, 38, 0.15);
}

#seo-checklist .stat-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

#seo-checklist .stat-label {
    font-size: 12px;
    color: var(--ls-muted);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    #seo-checklist .stats-row {
        gap: 16px;
        margin: 32px auto;
        max-width: 800px;
    }
    #seo-checklist .stat-card {
        padding: 20px 16px;
    }
    #seo-checklist .stat-number {
        font-size: 36px;
    }
    #seo-checklist .stat-label {
        font-size: 14px;
        margin-top: 8px;
    }
}


/* Value Items */

#seo-checklist .value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

#seo-checklist .value-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--ls-surface);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-md);
    box-shadow: var(--ls-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#seo-checklist .value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(24, 56, 38, 0.12);
}

#seo-checklist .value-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.15), rgba(241, 102, 105, 0.1));
    color: var(--primary);
    display: grid;
    place-items: center;
    position: relative;
    transition: all 0.3s ease;
}

#seo-checklist .value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.2), rgba(241, 102, 105, 0.15));
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
}

#seo-checklist .value-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--ls-heading);
}

#seo-checklist .value-content p {
    font-size: 13px;
    color: var(--ls-text);
    line-height: 1.6;
}

@media (min-width: 640px) {
    #seo-checklist .value-grid {
        gap: 20px;
        margin-top: 32px;
    }
    #seo-checklist .value-item {
        gap: 16px;
        padding: 20px;
    }
    #seo-checklist .value-icon {
        font-size: 24px;
        width: 52px;
        height: 52px;
    }
    #seo-checklist .value-content h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }
    #seo-checklist .value-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (min-width: 768px) {
    #seo-checklist .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #seo-checklist .value-grid {
        gap: 24px;
        margin-top: 40px;
    }
    #seo-checklist .value-item {
        padding: 24px;
        gap: 20px;
    }
    #seo-checklist .value-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
    #seo-checklist .value-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    #seo-checklist .value-content p {
        font-size: 15px;
    }
}


/* Price Anchor */

#seo-checklist .price-anchor {
    text-align: center;
    margin: 32px 0;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.08), rgba(241, 102, 105, 0.05));
    border: 2px solid var(--ls-border-strong);
    border-radius: var(--ls-radius-lg);
    box-shadow: var(--ls-shadow-soft);
    position: relative;
    overflow: hidden;
}

#seo-checklist .price-anchor::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 102, 105, 0.1) 0%, transparent 70%);
    animation: priceGlow 3s ease-in-out infinite;
}

#seo-checklist .price-anchor::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 139, 87, 0.1) 0%, transparent 70%);
    animation: priceGlow 3s ease-in-out infinite 1.5s;
}

@keyframes priceGlow {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

#seo-checklist .price-anchor>* {
    position: relative;
    z-index: 1;
}

#seo-checklist .price-old {
    display: block;
    text-decoration: line-through;
    color: var(--ls-muted);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

#seo-checklist .price-label {
    display: block;
    font-size: 14px;
    color: var(--ls-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

#seo-checklist .price-new {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 8px 0;
    animation: priceShimmer 2s ease-in-out infinite;
}

@keyframes priceShimmer {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

#seo-checklist .price-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--ls-text);
    font-style: italic;
}


/* Proof Carousel */

#seo-checklist .carousel-container {
    position: relative;
    margin: 32px 0;
}

#seo-checklist .carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#seo-checklist .carousel::-webkit-scrollbar {
    display: none;
}

#seo-checklist .proof-card {
    min-width: 280px;
    flex: 0 0 85%;
    background: var(--ls-surface);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-md);
    padding: 20px;
    scroll-snap-align: start;
    box-shadow: var(--ls-shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#seo-checklist .proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(24, 56, 38, 0.15);
}

#seo-checklist .proof-card img {
    width: 100%;
    height: auto;
    border-radius: var(--ls-radius-sm);
    margin-bottom: 12px;
    display: block;
    object-fit: cover;
}

#seo-checklist .proof-card .map-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: var(--ls-surface-muted);
    border: 1px solid var(--ls-border);
}

#seo-checklist .proof-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--ls-heading);
}

#seo-checklist .proof-card p {
    font-size: 14px;
    color: var(--ls-muted);
}

#seo-checklist .carousel-nav {
    display: none;
}

#seo-checklist .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ls-surface);
    border: 1px solid var(--ls-border);
    box-shadow: var(--ls-shadow-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ls-heading);
    transition: all 0.2s ease;
    z-index: 10;
}

#seo-checklist .carousel-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(46, 139, 87, 0.3);
}

#seo-checklist .carousel-arrow.prev {
    left: -24px;
}

#seo-checklist .carousel-arrow.next {
    right: -24px;
}

#seo-checklist .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

#seo-checklist .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ls-border);
    cursor: pointer;
    transition: all 0.2s;
}

#seo-checklist .dot:hover {
    background: var(--ls-border-strong);
}

#seo-checklist .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

@media (min-width: 768px) {
    #seo-checklist .carousel-nav {
        display: block;
    }
    #seo-checklist .proof-card {
        flex: 0 0 calc(50% - 10px);
        min-width: auto;
    }
    #seo-checklist .proof-card .map-image {
        height: 350px;
    }
}

@media (min-width: 1024px) {
    #seo-checklist .proof-card {
        flex: 0 0 calc(33.333% - 14px);
    }
    #seo-checklist .carousel {
        overflow-x: visible;
        flex-wrap: wrap;
        justify-content: center;
    }
    #seo-checklist .carousel-nav,
    #seo-checklist .carousel-dots {
        display: none;
    }
    #seo-checklist .proof-card .map-image {
        height: 280px;
    }
}


/* Video Testimonials */

#seo-checklist .video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
    padding: 0;
    max-width: 100%;
}

#seo-checklist .video-placeholder {
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, var(--ls-surface-muted) 0%, var(--ls-surface) 100%);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--ls-shadow-card);
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

#seo-checklist .video-placeholder:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(24, 56, 38, 0.18);
    border-color: var(--ls-border-strong);
}

#seo-checklist .video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(46, 139, 87, 0.4);
}

#seo-checklist .play-button {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 24px rgba(46, 139, 87, 0.35);
    z-index: 2;
    transition: all 0.3s ease;
}

#seo-checklist .video-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    color: white;
    padding: 32px 16px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

#seo-checklist .video-card {
    position: relative;
    width: 100%;
    border-radius: var(--ls-radius-lg);
    overflow: hidden;
    background: #0b0f19;
    border: 1px solid var(--ls-border);
    box-shadow: var(--ls-shadow-card);
}

#seo-checklist .video-card--embed {
    padding-top: var(--embed-aspect, 216.22%);
}

#seo-checklist .video-card--embed .video-frame {
    position: absolute;
    inset: 0;
}

#seo-checklist .video-card--embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
}

#seo-checklist .video-card--embed .video-overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    color: #ffffff;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

#seo-checklist .video-card--embed .video-embed-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.94);
    color: #0b0f19;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    z-index: 2;
}

#seo-checklist .video-card--embed .video-embed-play:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

#seo-checklist .video-card--embed .video-embed-play__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 20px;
}

#seo-checklist .video-card--embed .video-embed-play__label {
    letter-spacing: 0.3px;
}

#seo-checklist .video-card--embed.is-playing .video-embed-play {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.92);
    box-shadow: none;
}

#seo-checklist .video-card--embed.is-playing .video-overlay {
    opacity: 0;
    visibility: hidden;
}

#seo-checklist .client-info {
    margin-bottom: 8px;
}

#seo-checklist .client-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
}

#seo-checklist .client-business {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

#seo-checklist .review-preview {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.95;
    font-style: italic;
    margin-bottom: 6px;
}

#seo-checklist .results-badge {
    display: inline-block;
    background: rgba(46, 139, 87, 0.85);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    width: fit-content;
}

#seo-checklist .star-rating {
    color: #ffd166;
    font-size: 15px;
    margin-bottom: 4px;
}

#seo-checklist .star-rating i {
    margin-right: 1px;
}


/* Offer Section */

#seo-checklist .offer-list {
    list-style: none;
    margin: 32px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#seo-checklist .offer-list li {
    padding: 16px 0;
    display: flex;
    align-items: start;
    gap: 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--ls-border);
}

#seo-checklist .offer-list li:last-child {
    border-bottom: none;
}

#seo-checklist .checkmark {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(46, 139, 87, 0.1);
    border-radius: 50%;
    animation: checkmarkPop 0.3s ease;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

#seo-checklist .quote-box {
    background: var(--ls-surface);
    padding: 24px 28px;
    border-radius: var(--ls-radius-md);
    margin: 32px auto;
    max-width: 600px;
    border: 1px solid var(--ls-border);
    border-left: 4px solid var(--primary);
    font-style: italic;
    font-size: 18px;
    color: var(--ls-text);
    box-shadow: var(--ls-shadow-card);
}

@media (min-width: 1024px) {
    #seo-checklist .offer-list li {
        padding: 20px 0;
        font-size: 17px;
    }
    #seo-checklist .quote-box {
        padding: 28px 32px;
        font-size: 19px;
    }
}


/* Form Styles */

#seo-checklist .form-container {
    background: var(--ls-surface);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-lg);
    padding: 32px 24px;
    margin: 40px auto;
    max-width: 600px;
    box-shadow: var(--ls-shadow-soft);
}

#seo-checklist .form-step {
    display: none;
}

#seo-checklist .form-step.active {
    display: block;
}

#seo-checklist .progress-bar {
    height: 4px;
    background: var(--ls-border);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

#seo-checklist .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    transition: width 0.3s;
    width: 20%;
}

#seo-checklist .step-indicator {
    text-align: center;
    font-size: 14px;
    color: var(--ls-muted);
    margin-bottom: 24px;
}

#seo-checklist .form-group {
    margin-bottom: 24px;
}

#seo-checklist .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
}

#seo-checklist .form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--ls-border);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--ls-surface);
    color: var(--ls-heading);
}

#seo-checklist .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.18);
}

#seo-checklist .option-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

#seo-checklist .option-btn {
    padding: 16px;
    border: 1px solid var(--ls-border);
    background: var(--ls-surface);
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-weight: 500;
    color: var(--ls-heading);
}

#seo-checklist .option-btn:hover {
    border-color: var(--primary);
    background: var(--ls-highlight);
}

#seo-checklist .option-btn.selected {
    border-color: var(--primary);
    background: var(--ls-highlight);
}

#seo-checklist .form-footer {
    text-align: center;
    font-size: 12px;
    color: var(--ls-muted);
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* FAQ */

#seo-checklist .faq-container {
    max-width: 700px;
    margin: 0 auto;
}

#seo-checklist .faq-item {
    border-bottom: 1px solid var(--ls-border);
    padding: 20px 0;
}

#seo-checklist .faq-question {
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ls-heading);
    transition: color 0.2s ease;
}

#seo-checklist .faq-question:hover {
    color: var(--primary);
}

#seo-checklist .faq-answer {
    margin-top: 12px;
    color: var(--ls-text);
    display: none;
    line-height: 1.7;
    padding-right: 32px;
}

#seo-checklist .faq-item.active .faq-answer {
    display: block;
}

#seo-checklist .faq-toggle {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.2s;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 139, 87, 0.08);
    border-radius: 50%;
}

#seo-checklist .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(46, 139, 87, 0.15);
}

@media (min-width: 1024px) {
    #seo-checklist .faq-item {
        padding: 24px 0;
    }
    #seo-checklist .faq-question {
        font-size: 18px;
    }
    #seo-checklist .faq-answer {
        font-size: 16px;
        margin-top: 16px;
    }
}


/* Modal */

#seo-checklist .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 2147483647;
    overflow-y: auto;
    padding: 20px;
}

#seo-checklist .modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

#seo-checklist .modal-content {
    background: var(--ls-surface);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-lg);
    padding: 28px 24px;
    max-width: 520px;
    width: 100%;
    max-height: calc(100vh - 32px);
    text-align: center;
    position: relative;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.3s ease-out;
    z-index: 2147483647;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#seo-checklist .modal-close {
    position: absolute;
    top: 24px;
    right: 26px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--ls-muted);
    transition: color 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#seo-checklist .modal-close:hover {
    color: var(--ls-heading);
    background: var(--ls-surface-muted);
}

#seo-checklist .success-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

#seo-checklist .modal-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

#seo-checklist .modal-content>p {
    font-size: 18px;
    color: var(--ls-text);
    margin-bottom: 12px;
    text-align: left;
}

#seo-checklist .modal-content-wide {
    max-width: 600px;
}

#seo-checklist .modal-step {
    width: 100%;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-color: var(--primary) rgba(0, 0, 0, 0.08);
}

#seo-checklist .modal-step::-webkit-scrollbar,
#seo-checklist .calendly-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.06);
}

#seo-checklist .modal-step::-webkit-scrollbar-thumb,
#seo-checklist .calendly-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 999px;
}

#seo-checklist .modal-step::-webkit-scrollbar-track,
#seo-checklist .calendly-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}


/* Generating Animation */

#seo-checklist .generating-animation {
    text-align: center;
    padding: 20px 0;
}

#seo-checklist .generating-icon {
    margin-bottom: 24px;
}

#seo-checklist .spinner {
    width: 60px;
    height: 60px;
    animation: rotate 2s linear infinite;
}

#seo-checklist .spinner .path {
    stroke: var(--primary);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

#seo-checklist .generating-text {
    color: var(--ls-muted);
    margin-bottom: 32px;
}

#seo-checklist .generating-steps {
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
}

#seo-checklist .gen-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--ls-muted);
    opacity: 0.4;
    transition: all 0.3s ease;
}

#seo-checklist .gen-step.active {
    opacity: 1;
    color: var(--ls-heading);
}

#seo-checklist .gen-step.completed {
    opacity: 1;
    color: var(--primary);
}

#seo-checklist .gen-step .gen-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ls-surface-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: transparent;
    transition: all 0.3s ease;
}

#seo-checklist .gen-step.active .gen-check {
    background: var(--ls-highlight);
    color: transparent;
    animation: pulse 1s ease-in-out infinite;
}

#seo-checklist .gen-step.completed .gen-check {
    background: var(--primary);
    color: white;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


/* Schedule Step */

#seo-checklist .schedule-header {
    text-align: center;
    margin-bottom: 16px;
}

#seo-checklist .success-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

#seo-checklist .schedule-header h2 {
    text-align: center;
    margin-bottom: 8px;
}

#seo-checklist .schedule-header p {
    color: var(--ls-text);
    font-size: 15px;
}

#seo-checklist .calendly-container {
    margin: 0 -16px;
    border-top: 1px solid var(--ls-border);
    border-bottom: 1px solid var(--ls-border);
    background: var(--ls-surface-muted);
    min-height: 520px;
    max-height: calc(100vh - 240px);
    overflow-y: auto;
    overflow-x: hidden;
}

#seo-checklist .calendly-container iframe {
    min-height: 520px;
    width: 100%;
    height: 100%;
    transform: scale(0.92);
    transform-origin: top center;
    display: block;
}

#seo-checklist .schedule-footer {
    text-align: center;
    padding-top: 20px;
}

#seo-checklist .schedule-footer p {
    font-size: 13px;
    color: var(--ls-muted);
}

#seo-checklist .booking-video-modal {
    max-width: 760px;
    text-align: left;
}

#seo-checklist .booking-video__badge {
    /* display: inline-flex; */
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(46, 139, 87, 0.12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-align: center;
}

#seo-checklist .booking-video-modal h2 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--ls-heading);
    text-align: left;
}

#seo-checklist .booking-video-modal>p {
    font-size: 15px;
    color: var(--ls-text);
    margin-bottom: 16px;
}

#seo-checklist .booking-video__frame {
    position: relative;
    padding-top: 56.25%;
    border-radius: var(--ls-radius-sm);
    overflow: hidden;
    background: #000;
}

#seo-checklist .booking-video__frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 640px) {
    #seo-checklist .modal-content-wide {
        padding: 24px 16px;
        max-width: 100%;
        margin: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }
    #seo-checklist .calendly-container {
        margin: 0 -16px;
        min-height: 520px;
        overflow-x: hidden;
    }
    #seo-checklist .calendly-container iframe {
        min-height: 520px !important;
        width: 100%;
        transform: scale(0.92);
        transform-origin: top center;
    }
    #seo-checklist .generating-animation {
        padding: 10px 0;
    }
    #seo-checklist .schedule-header h2 {
        font-size: 22px;
    }
}

@media (max-width: 360px) {
    #seo-checklist .modal {
        padding: 12px;
    }
    #seo-checklist .modal.active {
        align-items: flex-start;
    }
    #seo-checklist .modal-content-wide {
        padding: 20px 12px;
        max-height: 94vh;
    }
    #seo-checklist .modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 22px;
    }
    #seo-checklist .success-badge {
        padding: 6px 14px;
        font-size: 12px;
        margin-bottom: 12px;
    }
    #seo-checklist .schedule-header h2 {
        font-size: 20px;
    }
    #seo-checklist .schedule-header p {
        font-size: 13px;
        line-height: 1.35;
    }
    #seo-checklist .calendly-container {
        margin: 0 -12px;
        min-height: 560px;
        max-height: calc(100vh - 210px);
    }
    #seo-checklist .calendly-container iframe {
        min-height: 560px !important;
        transform: scale(0.85);
        transform-origin: top center;
    }
    #seo-checklist .schedule-footer {
        padding-top: 16px;
    }
    #seo-checklist .schedule-footer p {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    #seo-checklist .calendly-container iframe {
        transform: scale(0.82);
    }
}

@media (min-width: 1024px) {
    #seo-checklist .modal-content {
        padding: 32px 28px;
    }
    #seo-checklist .modal-content-wide {
        max-width: 650px;
    }
    #seo-checklist .success-icon {
        font-size: 72px;
    }
    #seo-checklist .modal-content h2 {
        font-size: 32px;
    }
    #seo-checklist .calendly-container {
        margin: 0 -40px;
    }
}


/* Sticky CTA */

#seo-checklist .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ls-surface);
    border-top: 2px solid var(--primary);
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(24, 56, 38, 0.15), 0 -2px 0 var(--primary);
    z-index: 100;
    display: none;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

#seo-checklist .sticky-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

#seo-checklist .sticky-cta.active {
    display: block;
}

#seo-checklist .sticky-cta .btn-primary {
    max-width: none;
}


/* Section Headers */

#seo-checklist h2 {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    text-align: center;
    color: var(--ls-heading);
}

#seo-checklist .section-subheader {
    font-size: 1rem;
    color: var(--ls-text);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.65;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

#seo-checklist .section-text {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
    color: var(--ls-text);
    font-size: 1rem;
    line-height: 1.7;
}

#seo-checklist .section-text strong {
    color: var(--ls-heading);
}

#seo-checklist .section-note {
    max-width: 760px;
    margin: 24px auto 0;
    text-align: center;
    font-weight: 600;
    color: var(--ls-heading);
}

@media (min-width: 640px) {
    #seo-checklist h2 {
        margin-bottom: 16px;
    }
    #seo-checklist .section-subheader {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    #seo-checklist h2 {
        margin-bottom: 20px;
    }
    #seo-checklist .section-subheader {
        font-size: 1.2rem;
        margin-bottom: 48px;
    }
}


/* Responsive - General */

@media (min-width: 640px) {
    #seo-checklist .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
    #seo-checklist .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 0;
    }
    #seo-checklist .video-placeholder {
        width: 100%;
        max-width: 100%;
    }
    #seo-checklist .option-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    #seo-checklist .hero {
        padding: clamp(5rem, 10vw, 8rem) 0;
    }
    #seo-checklist .hero-logo {
        max-width: 240px;
        margin-bottom: 40px;
    }
    #seo-checklist h1 {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    #seo-checklist .subheadline {
        font-size: 1.25rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    #seo-checklist .stats-row {
        gap: 24px;
        margin: 32px 0;
    }
    #seo-checklist .stat-card {
        padding: 24px;
    }
    #seo-checklist .stat-number {
        font-size: 40px;
    }
    #seo-checklist .video-grid {
        gap: 32px;
    }
    #seo-checklist .video-placeholder {
        max-width: 260px;
    }
    #seo-checklist .form-container {
        padding: 48px 40px;
    }
    #seo-checklist .price-anchor {
        padding: 40px 32px;
    }
    #seo-checklist .price-new {
        font-size: 56px;
    }
    #seo-checklist .checklist-preview {
        padding: 32px;
        max-height: 450px;
    }
}

@media (min-width: 1200px) {
    #seo-checklist .container-wide {
        max-width: 1200px;
    }
    #seo-checklist .video-placeholder {
        max-width: 300px;
    }
}