.fishhere-sales-page {
    padding: 20px 14px 40px;
}

.fishhere-sales-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 32px 36px;
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
}

.fishhere-sales-card section {
    margin-bottom: 50px;
}

.fishhere-sales-card section:last-child {
    margin-bottom: 10px;
}

/* Hero */
.fh-hero {
    text-align: center;
}

.fh-hero-media {
    margin-bottom: 20px;
}

.fh-hero-media img {
    width: 100%;
    max-width: 640px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.fh-hero h1 {
    margin-bottom: 10px;
    font-size: 38px;
}

.fh-hero p {
    color: #555;
    font-size: 17px;
}

.fh-hero-sub {
    margin-top: 8px;
    color: #2271b1;
    font-size: 15px;
    font-weight: 600;
}

/* Product cards */
.fh-product-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fh-product-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    text-align: left;
}

.fh-product-card h2 {
    margin-bottom: 8px;
    font-size: 26px;
}

.fh-product-card p {
    color: #555;
    line-height: 1.6;
}

.fh-product-tagline {
    margin-bottom: 12px;
    color: #2271b1;
    font-size: 14px;
    font-weight: 600;
}

.fh-product-card-pro {
    background: #f4f9ff;
    border: 1px solid #9fc5e8;
    transform: scale(1.02);
}

.fh-pro-note {
    margin-top: 6px;
    color: #2271b1;
    font-size: 13px;
    font-weight: 600;
}

.fh-price {
    margin: auto 0 14px;
    font-size: 30px;
    font-weight: 700;
}

/* Buttons */
.fh-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    background: #2271b1;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.fh-btn:hover {
    background: #1a5a91;
}

.fh-btn-secondary {
    background: #fff;
    border: 1px solid #2271b1;
    color: #2271b1;
}

.fh-btn-secondary:hover {
    background: #f0f7ff;
}

/* Benefits */
.fh-benefits {
    text-align: center;
}

.fh-benefits h3,
.fh-compare h3,
.fh-final-cta h3 {
    margin-bottom: 25px;
    font-size: 22px;
}

.fh-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fh-benefit {
    padding: 20px;
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.fh-benefit h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

.fh-benefit p {
    color: #555;
    font-size: 14px;
}

.fh-benefit-featured {
    grid-column: 1 / -1;
    background: #f0f7ff;
    border: 1px solid #bfd7ea;
    text-align: center;
}

.fh-benefit-featured h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.fh-benefit-featured p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
}

/* Comparison */
.fh-compare {
    text-align: center;
}

.fh-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.fh-compare-table th,
.fh-compare-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e2e8f0;
}

.fh-compare-table th {
    background: #f8fafc;
    font-weight: 600;
}

.fh-compare-table td {
    text-align: center;
}

.fh-compare-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.fh-compare-table th:nth-child(3),
.fh-compare-table td:nth-child(3) {
    background: #f0f7ff;
}

/* Final CTA */
.fh-final-cta {
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.fh-final-cta h3 {
    margin-bottom: 8px;
}

.fh-final-cta p {
    margin-bottom: 20px;
    color: #555;
}

.fh-final-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Mobile */
@media (max-width: 767px) {
    .fishhere-sales-page {
        margin: 0 10px 28px;
    }

    .fishhere-sales-card {
        padding: 16px;
    }

    .fh-product-options,
    .fh-benefits-grid {
        grid-template-columns: 1fr;
    }

    .fh-compare-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}