/* ==========================================================
   PETSCOMPARE - LANDING B2B BUSINESS
   ==========================================================
   Style epure, premium, oriente conversion Pro/Premium
   ========================================================== */

/* === HERO === */
.biz-hero {
    text-align: center;
    padding: 3rem 1rem 2.5rem;
    margin-bottom: 2rem;
}

.biz-hero-overline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #047857;
    font-weight: 600;
    margin-bottom: 1rem;
}

.biz-hero-h1 {
    font-family: 'Fraunces', 'Georgia', serif;
    font-size: 2.4rem;
    line-height: 1.15;
    color: #1f2937;
    margin: 0 auto 1.25rem;
    letter-spacing: -.02em;
    font-weight: 600;
    max-width: 720px;
}

.biz-hero-h1 em {
    font-style: italic;
    color: #047857;
}

.biz-hero-sub {
    font-size: 1.08rem;
    line-height: 1.65;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.biz-hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.biz-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    color: #fff;
    padding: .95rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(4, 120, 87, .25);
    transition: transform .15s, box-shadow .15s;
}
.biz-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 120, 87, .35);
    text-decoration: none;
    color: #fff;
}

.biz-hero-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px solid transparent;
    transition: border-color .15s;
}
.biz-hero-link:hover {
    border-bottom-color: #047857;
}

/* === SECTIONS GLOBALES === */
.biz-section {
    margin: 3rem 0;
}

/* === PERSONAS (3 cards) === */
.biz-personas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.biz-persona {
    position: relative;
    background: #fff;
    border: 1.5px solid #f3e8d0;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.biz-persona:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    border-color: #047857;
}

.biz-persona-featured {
    border-color: #f59e0b;
    background: linear-gradient(180deg, #fffbeb 0%, #fff 30%);
}

.biz-persona-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    box-shadow: 0 4px 10px rgba(245, 158, 11, .25);
}

.biz-persona-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.biz-persona-title {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    color: #1f2937;
    margin: 0 0 .65rem;
    font-weight: 600;
    line-height: 1.3;
}

.biz-persona-desc {
    color: #4b5563;
    font-size: .95rem;
    line-height: 1.55;
    margin: 0 0 1.25rem;
}

.biz-persona-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.biz-persona-bullets li {
    padding: .4rem 0;
    color: #374151;
    font-size: .92rem;
    line-height: 1.5;
    border-bottom: 1px dashed #f3f4f6;
}
.biz-persona-bullets li:last-child {
    border-bottom: none;
}

/* === PRICING (2 cards Pro / Premium) === */
.biz-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.biz-plan {
    position: relative;
    background: #fff;
    border: 1.5px solid #f3e8d0;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: all .2s;
}
.biz-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.biz-plan-featured {
    border: 2px solid #047857;
    background: linear-gradient(180deg, #ecfdf5 0%, #fff 30%);
    transform: scale(1.02);
}

.biz-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    box-shadow: 0 4px 10px rgba(4, 120, 87, .25);
}

.biz-plan-name {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.biz-plan-price {
    margin-bottom: .35rem;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.biz-plan-amount {
    font-family: 'Fraunces', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #047857;
    line-height: 1;
}

.biz-plan-period {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

.biz-plan-yearly {
    color: #6b7280;
    font-size: .88rem;
    margin-bottom: .75rem;
}
.biz-plan-yearly strong { color: #1f2937; }

.biz-plan-target {
    background: #f3f4f6;
    color: #4b5563;
    padding: .5rem .85rem;
    border-radius: 8px;
    font-size: .85rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.biz-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.biz-plan-features li {
    padding: .5rem 0;
    color: #374151;
    font-size: .94rem;
    line-height: 1.45;
    border-bottom: 1px dashed #f3f4f6;
}
.biz-plan-features li:last-child {
    border-bottom: none;
}
.biz-plan-features strong { color: #047857; }

.biz-plan-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    color: #fff;
    padding: .85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: .65rem;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 12px rgba(4, 120, 87, .25);
}
.biz-plan-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(4, 120, 87, .35);
    text-decoration: none;
    color: #fff;
}

.biz-plan-trial {
    display: block;
    text-align: center;
    color: #6b7280;
    font-size: .85rem;
    text-decoration: none;
    padding: 6px;
}
.biz-plan-trial:hover {
    color: #047857;
    text-decoration: underline;
}

.biz-pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #6b7280;
    font-size: .92rem;
}
.biz-pricing-note a {
    color: #047857;
    font-weight: 600;
}

/* === COMPARATIF TABLE === */
.biz-compare-table {
    margin-top: 1.5rem;
    overflow-x: auto;
}

.biz-compare-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #f3e8d0;
    border-radius: 12px;
    overflow: hidden;
    font-size: .93rem;
}

.biz-compare-table th {
    background: linear-gradient(180deg, #fefaf2 0%, #fff7ed 100%);
    color: #1f2937;
    padding: 1rem;
    text-align: left;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid #f3e8d0;
}
.biz-compare-table th small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.biz-compare-table td {
    padding: .85rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}
.biz-compare-table tr:last-child td {
    border-bottom: none;
}
.biz-compare-table td:first-child {
    font-weight: 600;
    color: #1f2937;
    background: #fafafa;
}
.biz-compare-table td strong {
    color: #047857;
}

/* === FAQ === */
.biz-faq {
    margin-top: 1.5rem;
    max-width: 760px;
}

.biz-faq details {
    background: #fff;
    border: 1px solid #f3e8d0;
    border-radius: 10px;
    padding: 0;
    margin-bottom: .75rem;
    overflow: hidden;
    transition: border-color .15s;
}
.biz-faq details:hover {
    border-color: #047857;
}
.biz-faq details[open] {
    border-color: #047857;
}

.biz-faq summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: #1f2937;
    user-select: none;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}
.biz-faq summary::-webkit-details-marker { display: none; }
.biz-faq summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #047857;
    font-weight: 400;
    transition: transform .2s;
}
.biz-faq details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.biz-faq details p {
    padding: 0 1.25rem 1rem;
    margin: 0;
    color: #4b5563;
    line-height: 1.65;
    font-size: .95rem;
}

/* === CTA FINAL === */
.biz-final-cta {
    text-align: center;
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 18px;
    margin: 3rem 0;
}

.biz-final-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.85rem;
    margin: 0 0 .75rem;
    font-weight: 600;
    letter-spacing: -.01em;
}

.biz-final-cta p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.05rem;
    margin: 0 0 1.75rem;
}

.biz-final-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.biz-final-cta-btn {
    display: inline-block;
    background: #fff;
    color: #047857;
    padding: .95rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
    transition: transform .15s, box-shadow .15s;
}
.biz-final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    text-decoration: none;
    color: #047857;
}

.biz-final-cta-link {
    color: rgba(255, 255, 255, .9);
    text-decoration: underline;
    font-weight: 500;
}
.biz-final-cta-link:hover {
    color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .biz-hero-h1 { font-size: 1.8rem; }
    .biz-hero-sub { font-size: .98rem; }
    .biz-plan-featured { transform: none; }
    .biz-final-cta { padding: 2rem 1.25rem; }
    .biz-final-cta h2 { font-size: 1.4rem; }
}
