/* Hormone Balance Plan Custom Styles */

:root {
    --hb-primary: var(--brand-primary, #6B7B5F);
    --hb-dark: var(--brand-dark, #5a6a4f);
    --hb-light: var(--brand-light, #EBF0E6);
    --hb-bg: var(--bg-section-unified, #F5EFE6);
    --hb-text: var(--text-body, #4A4F41);
    --hb-heading: var(--text-heading, #6B7B5F);
    --bio-sage-dark: #5A6B50;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Page Container Reset */
body.body-plan-hb {
    background-image: none !important;
    background-color: var(--hb-bg) !important;
}

body.body-plan-hb .single-product-plan-hb {
    width: 100%;
    max-width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

@keyframes hbPremiumPulse {
    0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 0 25px rgba(107, 123, 95, 0.6); }
    100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
}

/* 1. HERO SECTION */
.hb-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--hb-bg) 0%, #fff 100%);
    overflow: hidden;
    padding: 100px 0;
}

.hb-hero-bg-blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(107, 123, 95, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: -10%;
    right: -10%;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}

.hb-hero-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hb-hero-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Typography */
.hb-eyebrow {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--hb-dark);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.hb-hero-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--hb-heading);
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--hb-dark), var(--hb-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Image Wrapper */
.hb-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hb-hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hb-hero-image-wrapper:hover img {
    transform: rotate(0deg) scale(1.02);
}

.hb-hero-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--hb-text);
    margin-bottom: 35px;
    max-width: 600px;
}

/* Subtitle Box */
.hb-hero-subtitle-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 35px;
    border-left: 4px solid var(--hb-primary);
    box-shadow: var(--glass-shadow);
}

.hb-hero-subtitle-box p {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--hb-dark);
}

/* Badges */
.hb-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 123, 95, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--hb-dark);
}

.hb-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--hb-primary);
}

/* Author */
.hb-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hb-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--hb-primary);
}

.hb-author-info span {
    font-size: 0.85rem;
    color: #888;
    display: block;
}

.hb-author-info strong {
    font-size: 0.95rem;
    color: var(--hb-dark);
}

/* Actions */
.hb-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hb-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--hb-primary), var(--hb-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 123, 95, 0.3);
}

.btn-hb-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(107, 123, 95, 0.4);
    color: #fff;
}

.btn-hb-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: var(--hb-dark);
    border: 2px solid var(--hb-primary);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hb-secondary:hover {
    background: var(--hb-light);
    color: var(--hb-dark);
}

.btn-hb-secondary svg {
    transition: transform 0.3s ease;
}

.btn-hb-secondary:hover svg {
    transform: translateX(5px);
}

/* SECTIONS */
.hb-section {
    padding: 80px 0;
}

.hb-section:nth-child(even) {
    background: #fff;
}

.hb-section:nth-child(odd) {
    background: #f9fdf9;
}

.hb-section-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 2.2rem;
    color: var(--hb-heading);
    margin-bottom: 40px;
}

.hb-text-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--hb-text);
}

/* BENEFITS GRID */
.hb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hb-benefit-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--hb-primary);
    transition: transform 0.3s ease;
    text-align: center;
}

.hb-benefit-card:hover {
    transform: translateY(-5px);
}

.hb-benefit-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(107, 123, 95, 0.05);
    padding: 10px;
}

.hb-benefit-card h3 {
    font-size: 1.15rem;
    color: var(--hb-dark);
    margin-bottom: 12px;
}

.hb-benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.hb-microcopy-center {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

/* WHY 14 DAYS */
.hb-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.hb-why-item {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.hb-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.hb-why-item h3 {
    font-size: 1.15rem;
    color: var(--hb-dark);
    margin-bottom: 10px;
}

.hb-why-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.hb-note-box {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 30px;
    padding: 25px;
    background: rgba(107, 123, 95, 0.08);
    border-radius: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* AUDIENCE SECTION */
.hb-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.hb-audience-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hb-audience-card.positive {
    border-top: 5px solid var(--hb-primary);
}

.hb-audience-card.negative {
    border-top: 5px solid #c45c5c;
}

.hb-audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.hb-audience-card.positive h3 {
    color: var(--hb-primary);
}

.hb-audience-card.negative h3 {
    color: #c45c5c;
}

.hb-audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hb-audience-card li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

.hb-audience-card li:last-child {
    border-bottom: none;
}

.hb-audience-card.positive li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hb-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.hb-audience-card.negative li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #c45c5c;
    font-weight: bold;
    font-size: 1.2rem;
}

.hb-audience-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
    font-style: italic;
}

/* PRICING - Botanical Glassmorphism Design */
.hb-pricing {
    background: linear-gradient(180deg, #fdfbf7 0%, #f5efe6 50%, #fdfbf7 100%);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

/* Organic blob decorations */
.hb-pricing::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 123, 95, 0.08) 0%, transparent 70%);
    border-radius: 60% 40% 50% 50%;
    top: -150px;
    left: -100px;
    animation: hbFloatBlob 15s ease-in-out infinite;
    z-index: 0;
}

.hb-pricing::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 40% 60% 45% 55%;
    bottom: -100px;
    right: -80px;
    animation: hbFloatBlob 12s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes hbFloatBlob {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -15px) rotate(5deg); }
    66% { transform: translate(-10px, 10px) rotate(-3deg); }
}

.hb-pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    margin-top: 60px;
    padding: 0 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

/* Base card styling - Glassmorphism */
.hb-price-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 44px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:
        0 4px 24px rgba(107, 123, 95, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: visible;
}

.hb-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.5) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hb-price-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(107, 123, 95, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Premium card - elevated treatment */
.hb-price-card.premium {
    background: linear-gradient(165deg, #fefefe 0%, #faf8f5 100%);
    border: 2px solid rgba(107, 123, 95, 0.25);
    box-shadow:
        0 8px 40px rgba(107, 123, 95, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.8);
    z-index: 2;
}

.hb-price-card.premium::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(107, 123, 95, 0.3) 0%, rgba(212, 175, 55, 0.15) 50%, rgba(107, 123, 95, 0.2) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hb-price-card.premium:hover::after {
    opacity: 1;
}

.hb-premium-anim {
    animation: hbPremiumPulse 2.5s infinite ease-in-out;
}

/* Badge - Floating botanical style */
.hb-badge-corner {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5a6b50 0%, #6B7B5F 50%, #7a8a6c 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow:
        0 6px 20px rgba(90, 107, 80, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.hb-badge-corner::before {
    content: '★';
    font-size: 0.85em;
}

/* Header section */
.hb-price-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    padding: 0;
    background: transparent !important;
}

.hb-price-title {
    font-family: 'DM Serif Display', var(--font-heading, serif);
    font-size: 1.65rem;
    color: #3a4b35;
    display: block;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hb-price-card.premium .hb-price-title {
    background: linear-gradient(135deg, #3a4b35 0%, #5a6b50 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hb-price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c3e2e;
    font-family: 'DM Serif Display', var(--font-heading, serif);
    line-height: 1;
    margin-bottom: 4px;
    position: relative;
    display: inline-block;
}

.hb-price-card.premium .hb-price-amount {
    color: #5a6b50;
}

.hb-price-amount::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}

.hb-price-desc {
    font-size: 0.9rem;
    color: #5a6a5a;
    line-height: 1.4;
    margin-top: 16px;
}

/* Features list - Botanical treatment */
.hb-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.hb-features-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(107, 123, 95, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #4a5c40;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hb-features-list li:last-child {
    border-bottom: none;
}

.hb-features-list li:hover {
    padding-left: 6px;
    color: #3a4b35;
}

.hb-features-list svg {
    color: #6B7B5F;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s ease;
    stroke: #6B7B5F;
}

.hb-features-list li:hover svg {
    transform: scale(1.15);
    color: #5a6b50;
    stroke: #5a6b50;
}

.hb-price-card.premium .hb-features-list svg {
    color: #5a6b50;
    stroke: #5a6b50;
}

.hb-price-footer {
    padding: 0;
    margin-top: auto;
}

/* CTA Buttons - Distinctive styling */
.btn-price {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    text-align: center;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-price:hover::before {
    left: 100%;
}

.btn-price.basic {
    background: linear-gradient(135deg, #f5f3f0 0%, #ebe8e3 100%);
    color: #5a6a5a;
    border-color: rgba(107, 123, 95, 0.2);
}

.btn-price.basic:hover {
    background: linear-gradient(135deg, #ebe8e3 0%, #e0dcd7 100%);
    border-color: rgba(107, 123, 95, 0.3);
    transform: translateY(-2px);
}

.btn-price.premium {
    background: linear-gradient(135deg, #5a6b50 0%, #6B7B5F 50%, #7a8a6c 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(90, 107, 80, 0.35);
    border-color: transparent;
}

.btn-price.premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(90, 107, 80, 0.45);
}

.btn-price.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #eee;
    color: #888;
}

.btn-price.loading {
    opacity: 0.7;
    cursor: wait;
}

.hb-microcopy {
    font-size: 0.85rem;
    color: #888;
    margin-top: 12px;
    text-align: center;
}

/* WHAT YOU GET */
.hb-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.hb-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.hb-check {
    width: 32px;
    height: 32px;
    background: var(--hb-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-weight: bold;
}

.hb-checklist-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Instant Access Note (below checklist cards) */
.hb-instant-access-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(107, 123, 95, 0.08), rgba(107, 123, 95, 0.03));
    border-radius: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hb-instant-icon {
    font-size: 1.5rem;
}

.hb-instant-access-note p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hb-dark);
    letter-spacing: 0.5px;
}

/* HOW TO USE - STEPS */
.hb-steps {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hb-step {
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.hb-step-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--hb-primary), var(--hb-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.hb-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* FAQ */
.hb-faq-list {
    margin-top: 40px;
}

.hb-faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.hb-faq-item summary {
    font-family: var(--font-heading, serif);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--hb-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.hb-faq-item summary::-webkit-details-marker {
    display: none;
}

.hb-faq-item .faq-icon {
    font-size: 1.5rem;
    color: var(--hb-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.hb-faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.hb-faq-item .faq-content {
    padding-top: 15px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.hb-important-note {
    background: linear-gradient(135deg, rgba(107, 123, 95, 0.1), rgba(107, 123, 95, 0.05));
    border-left: 4px solid var(--hb-primary);
    padding: 25px 30px;
    border-radius: 0 15px 15px 0;
    margin-top: 50px;
}

.hb-important-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* TECH DETAILS */
.hb-tech-details {
    padding: 80px 0;
    background: #f9fdf9;
    border-top: 1px solid #ebf2eb;
}

.hb-tech-title {
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--font-heading, serif);
    font-size: 2rem;
    color: var(--hb-dark);
}

.hb-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.hb-tech-card {
    background: #fff;
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.hb-tech-card:hover {
    transform: translateY(-5px);
}

.hb-tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1;
}

.hb-tech-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--hb-dark);
}

.hb-tech-card p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.hb-tech-card span {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
    display: block;
}

/* DUPLICATE ALERT MODAL */
#duplicate-plan-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#duplicate-plan-alert.is-visible {
    opacity: 1;
}

.duplicate-alert-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.duplicate-alert-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.duplicate-alert-close svg {
    width: 24px;
    height: 24px;
    stroke: #999;
}

.duplicate-alert-icon {
    margin-bottom: 20px;
}

.duplicate-alert-icon svg {
    width: 50px;
    height: 50px;
    stroke: #f0ad4e;
}

.duplicate-alert-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.duplicate-alert-message {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.duplicate-alert-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.duplicate-alert-btn {
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
}

.duplicate-alert-btn.primary {
    background: var(--hb-primary);
    color: #fff;
}

.duplicate-alert-btn.primary:hover {
    background: var(--hb-dark);
}

.duplicate-alert-btn.secondary {
    background: transparent;
    color: var(--hb-primary);
    border: 2px solid var(--hb-primary);
}

.duplicate-alert-btn.secondary:hover {
    background: var(--hb-light);
}

/* CTA BOX (after benefits) */
.hb-cta-box {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(107, 123, 95, 0.08), rgba(107, 123, 95, 0.03));
    border-radius: 20px;
}

.hb-cta-instant {
    font-size: 1.15rem;
    color: var(--hb-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.hb-cta-disclaimer {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-bottom: 25px;
}

.hb-cta-microcopy {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
}

/* FINAL CTA SECTION */
.hb-final-cta {
    background: linear-gradient(135deg, rgba(243, 234, 221, 0.82) 0%, rgba(230, 220, 209, 0.78) 100%) !important;
    padding: 100px 20px !important;
    text-align: center;
    color: var(--bio-sage-dark);
}

.hb-final-cta h2 {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: var(--bio-sage-dark);
}

.hb-final-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 35px;
}

.hb-final-cta .btn-hb-primary {
    background: #6F7F63;;
    color: #FFF;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hb-final-cta .btn-hb-primary:hover {
    background-color: #5F6F56;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(111, 127, 99, 0.30);
}

.hb-final-microcopy {
    font-size: 0.95rem;
    color: var(--bio-sage-dark);
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hb-hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hb-hero-content {
        order: 2;
    }

    .hb-hero-image-wrapper {
        order: 1;
        max-width: 350px;
    }

    .hb-hero-title {
        font-size: 2.8rem;
    }

    .hb-badges {
        justify-content: center;
    }

    .hb-author {
        justify-content: center;
    }

    .hb-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hb-hero-section {
        min-height: auto;
        padding: 80px 0;
    }

    .hb-hero-title {
        font-size: 2.2rem;
    }

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

    .hb-why-grid {
        grid-template-columns: 1fr;
    }

    .hb-audience-grid {
        grid-template-columns: 1fr;
    }

    .hb-pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 420px;
    }

    .hb-price-card {
        padding: 36px 28px;
    }

    .hb-price-card.premium {
        order: -1; /* Premium first on mobile */
    }

    .hb-badge-corner {
        font-size: 0.7rem;
        padding: 8px 18px;
    }

    .hb-price-amount {
        font-size: 2.6rem;
    }

    .hb-steps {
        flex-direction: column;
        align-items: center;
    }

    .hb-step {
        max-width: 100%;
    }
}

/* CTA ACTIONS (for preview button alongside primary CTA) */
.hb-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 25px 0 15px 0;
}

.btn-hb-preview {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(107, 123, 95, 0.1);
    color: var(--hb-dark);
    border: 2px solid rgba(107, 123, 95, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hb-preview:hover {
    background: rgba(107, 123, 95, 0.15);
    border-color: rgba(107, 123, 95, 0.5);
    color: var(--hb-dark);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .hb-cta-actions {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
}
