/* PRICING PAGE BASE */
body {
    margin: 0;
    background: #0b3b75;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    color: #f9fafb;
}

/* PAGE WRAPPER */
.page-wrap {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 24px;
}

/* PRICING CARDS */
.pricing-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-card {
    flex: 1 1 280px;
    max-width: 340px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 24px 22px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    position: relative;
	overflow: visible;
}

.pricing-card.popular {
    border-color: #fbbf24;
    box-shadow: 0 10px 28px rgba(0,0,0,0.55);
}
.pricing-btn-wrap {
    margin-top: 16px;
    display: flex;
}

.popular-badge {
    position: absolute;
    top: 14px;
    right: 18px;
    background: #fbbf24;
    color: #1f2937;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-price {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.plan-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    font-size: 0.9rem;
}

.plan-list li {
    margin-bottom: 6px;
}

.plan-list li span {
    font-weight: 600;
}


/* FEATURE COMPARISON TABLE */
.features-table-wrap {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 20px 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.features-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

table.features {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

table.features th,
table.features td {
    padding: 8px 6px;
    text-align: left;
}

table.features th {
    border-bottom: 1px solid rgba(255,255,255,0.25);
    font-weight: 700;
}

table.features td {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

table.features th:nth-child(2),
table.features th:nth-child(3),
table.features th:nth-child(4),
table.features td:nth-child(2),
table.features td:nth-child(3),
table.features td:nth-child(4) {
    text-align: center;
}

.footer-note {
    margin-top: 14px;
    font-size: 0.85rem;
    opacity: 0.85;
    text-align: center;
}
/* Restore homepage outer copper frame */
.vf-btn-frutiger-red {
    padding: 2px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}
.pricing-card .vf-btn-frutiger-red {
    display: block;
    width: auto;
    padding: 2px;
    box-sizing: border-box;
    margin: 0 auto; /* centers the button */
}
.vf-btn-frutiger-red .inner {
    display: inline-block;
}
.vf-btn-free-download {
    /* inherit all frutiger-red styles */
}
.tellmore-wrap {
    margin: 16px 0;
    text-align: center;
}
.tellmore-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
    background: #C8102E; /* VetForge red */
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer; /* <-- makes it obvious it's clickable */
    transition: background 0.25s ease, transform 0.15s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.tellmore-icon:hover {
    background: #A00D24; /* darker red on hover */
    transform: translateY(-2px); /* subtle lift */
}

.tellmore-text {
    font-size: 18px;
}

/* Modal overlay */
.vf-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* Modal box */
.vf-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 520px;
    margin: 8% auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.35);
    font-family: 'Frutiger', sans-serif;
    color: #222;
    position: relative;
}

/* Title */
.vf-modal-title {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 600;
    color: #C8102E; /* VetForge red */
}

/* Close button */
.vf-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
}
.vf-modal-close:hover {
    color: #C8102E;
}

/* Paragraph spacing */
.vf-modal-content p {
    margin-bottom: 14px;
    line-height: 1.45;
}
.tellmore-icon {
    cursor: pointer !important;
    pointer-events: auto !important;
}

.bonus-section {
    background: #0b3b75;
    padding: 12px;
    border-radius: 6px;
    margin-top: 12px;
}

.bonus-badge {
    display: inline-block;
    background: #fbbf24;
    color: #1f2937;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 6px;
}

.bonus-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.bonus-subtext {
    font-size: 0.8rem;
    color: #fff;
}
/* Card visual hierarchy */
.walkthrough-card {
    background: rgba(255,255,255,0.06);          /* same as other cards */
    border: 1px solid #b30b0b;                  /* your chosen red */
    border-radius: 12px;                        /* same rounding */
    padding: 24px 22px;                         /* same spacing */
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);      /* same shadow */
    position: relative;
}



/* Price micro-animation */
.walkthrough-price {
    animation: pulsePrice 2.5s infinite ease-in-out;
}

/* Group titles */
.walkthrough-list .group-title {
    margin-top: 12px;
    font-weight: 700;
    color: #fbbf24;
    font-size: 0.95rem;
}

/* Urgency counter */
.walkthrough-urgency {
    margin: 10px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.urgency-dot {
    width: 15px;
    height: 15px;
    background: #b30b0b;
    border-radius: 50%;
    animation: pulseDot 2.5s infinite ease-in-out;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

.urgency-text {
    font-size: 0.85rem;
    color: #fbbf24;
}

/* Tooltip */
.walkthrough-tooltip {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tooltip-icon {
    cursor: pointer;
}
