/* Vetmivo - Public Marketing & Commercial Design System */

:root {
    --pub-primary: #00C9A7;
    --pub-primary-hover: #00B395;
    --pub-primary-light: #E6FAF6;
    --pub-primary-glow: rgba(0, 201, 167, 0.2);
    --pub-accent: #5EC6E8;
    --pub-success: #10b981;
    --pub-warning: #FFC857;
    --pub-coral: #FF6B6B;
    --pub-purple: #8B5CF6;
    --pub-dark: #0E3A5A;
    --pub-dark-surface: #08243A;
    --pub-slate: #334155;
    --pub-muted: #64748b;
    --pub-light: #f8fafc;
    --pub-border: #e2e8f0;
    --pub-border-hover: #cbd5e1;
    --pub-card-bg: #ffffff;
    --pub-radius: 14px;
    --pub-radius-sm: 8px;
    --pub-radius-lg: 20px;
    --pub-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --pub-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.07);
    --pub-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --pub-shadow-glow: 0 10px 30px -5px rgba(0, 201, 167, 0.25);
    --pub-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.public-body {
    font-family: var(--pub-font);
    background-color: #ffffff;
    color: var(--pub-slate);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Public Header & Navigation */
.pub-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pub-border);
    transition: all 0.2s ease;
}

.pub-header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.pub-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--pub-dark);
}

.pub-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--pub-primary), #6366f1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--pub-shadow-glow);
}

.pub-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pub-nav-item {
    position: relative;
}

.pub-nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.85rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--pub-slate);
    text-decoration: none;
    border-radius: var(--pub-radius-sm);
    transition: all 0.15s ease;
    cursor: pointer;
    white-space: nowrap;
}

.pub-nav-link:hover, .pub-nav-link.active {
    color: var(--pub-primary);
    background: var(--pub-primary-light);
}

/* Mega Menu Dropdown */
.pub-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius);
    box-shadow: var(--pub-shadow-lg);
    width: 820px;
    padding: 1.5rem;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1010;
}

.pub-nav-item:hover .pub-mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pub-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pub-mega-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pub-muted);
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--pub-border);
}

.pub-mega-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--pub-radius-sm);
    text-decoration: none;
    color: var(--pub-dark);
    transition: all 0.15s ease;
}

.pub-mega-card:hover {
    background: var(--pub-primary-light);
    transform: translateX(3px);
}

.pub-mega-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--pub-light);
    color: var(--pub-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pub-mega-card-title {
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pub-mega-card-desc {
    font-size: 0.75rem;
    color: var(--pub-muted);
    line-height: 1.3;
    margin-top: 0.15rem;
}

/* Auth Area & Actions */
.pub-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--pub-radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
    border: 1px solid transparent;
}

.pub-btn-primary {
    background: var(--pub-primary);
    color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.25);
}

.pub-btn-primary:hover {
    background: var(--pub-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
}

.pub-btn-outline {
    background: transparent;
    border-color: var(--pub-border);
    color: var(--pub-slate);
}

.pub-btn-outline:hover {
    border-color: var(--pub-primary);
    color: var(--pub-primary);
    background: var(--pub-primary-light);
}

.pub-btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    border-radius: 10px;
}

/* Cart Button */
.pub-cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--pub-border);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pub-slate);
    text-decoration: none;
    transition: all 0.15s ease;
}

.pub-cart-btn:hover {
    border-color: var(--pub-primary);
    color: var(--pub-primary);
}

.pub-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--pub-primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 9999px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Public Loyalty Points Pill */
.pub-loyalty-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
    border: 1px solid #fde047;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #854d0e;
    text-decoration: none;
    transition: all 0.15s ease;
}

.pub-loyalty-pill:hover {
    background: linear-gradient(135deg, #fde047 0%, #fef08a 100%);
    border-color: #eab308;
    color: #713f12;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(234, 179, 8, 0.25);
}

/* Auth Area & User Dropdown for Clinic Users */
.pub-user-dropdown-wrapper {
    position: relative;
}

.pub-auth-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: #ffffff;
    border: 1px solid var(--pub-border);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pub-dark);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.pub-auth-pill:hover,
.pub-user-dropdown-wrapper.open .pub-auth-pill {
    background: var(--pub-primary-light);
    border-color: var(--pub-primary);
    color: var(--pub-primary);
}

.pub-auth-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pub-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.pub-auth-user-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.pub-auth-name {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--pub-dark);
}

.pub-auth-clinic {
    font-size: 0.7rem;
    color: var(--pub-muted);
}

.pub-user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 270px;
    background: #ffffff !important;
    border: 1px solid var(--pub-border);
    border-radius: 12px;
    box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.16), 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
    display: none;
    z-index: 99999;
}

.pub-user-dropdown-wrapper.open .pub-user-dropdown-menu {
    display: block !important;
    animation: pubDropdownFade 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pubDropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.pub-user-dropdown-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--pub-border);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.pub-user-dropdown-header .pub-auth-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.875rem;
}

.pub-user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pub-slate);
    text-decoration: none;
    transition: all 0.15s ease;
}

.pub-user-dropdown-item:hover {
    background: var(--pub-primary-light);
    color: var(--pub-primary);
}

.pub-user-dropdown-item.text-danger:hover {
    background: #fee2e2;
    color: #dc2626;
}

.pub-user-dropdown-divider {
    height: 1px;
    background: var(--pub-border);
    margin: 0.4rem 0;
}

/* Hero Section */
.pub-hero {
    position: relative;
    padding: 5rem 1.5rem 4rem;
    background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
    text-align: center;
}

.pub-hero-container {
    max-width: 1040px;
    margin: 0 auto;
}

.pub-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--pub-primary-light);
    color: var(--pub-primary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.pub-hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--pub-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.pub-hero-subtitle {
    font-size: 1.2rem;
    color: var(--pub-muted);
    max-width: 720px;
    margin: 0 auto 2.25rem;
    line-height: 1.6;
}

.pub-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pub-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--pub-muted);
    flex-wrap: wrap;
}

.pub-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Feature Showcase Grid */
.pub-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.pub-feature-card {
    background: var(--pub-card-bg);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius);
    padding: 1.75rem;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}

.pub-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pub-shadow-lg);
    border-color: #c7d2fe;
}

.pub-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--pub-primary-light);
    color: var(--pub-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.pub-feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pub-dark);
    margin-bottom: 0.5rem;
}

.pub-feature-desc {
    font-size: 0.9rem;
    color: var(--pub-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

/* Pricing Grid & Cards */
.pub-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.pub-pricing-card {
    background: #ffffff;
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pub-pricing-card.featured {
    border-color: var(--pub-primary);
    box-shadow: var(--pub-shadow-glow), var(--pub-shadow-lg);
    transform: scale(1.02);
}

.pub-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pub-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Comparison Table */
.pub-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    background: #ffffff;
    border-radius: var(--pub-radius);
    overflow: hidden;
    box-shadow: var(--pub-shadow);
}

.pub-compare-table th, .pub-compare-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--pub-border);
}

.pub-compare-table th {
    background: var(--pub-light);
    font-weight: 700;
    color: var(--pub-dark);
    font-size: 0.9rem;
}

/* FAQ Accordion */
.pub-faq-item {
    background: #ffffff;
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.15s ease;
}

.pub-faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--pub-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.pub-faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--pub-slate);
    font-size: 0.925rem;
    line-height: 1.6;
}

/* Public Footer */
.pub-footer {
    background: var(--pub-dark);
    color: #94a3b8;
    padding: 4.5rem 1.5rem 2rem;
    border-top: 1px solid #334155;
    margin-top: 5rem;
}

.pub-footer-container {
    max-width: 1320px;
    margin: 0 auto;
}

.pub-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.pub-footer-col-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pub-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pub-footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.pub-footer-link:hover {
    color: #ffffff;
}

.pub-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    font-size: 0.825rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .pub-nav { display: none; }
    .pub-mega-menu { display: none !important; }
    .pub-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .pub-hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .pub-footer-grid { grid-template-columns: 1fr; }
    .pub-hero-title { font-size: 2rem; }
    .pub-hero-actions { flex-direction: column; width: 100%; }
    .pub-hero-actions .pub-btn { width: 100%; }
    .pub-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ==========================================================================
   PUBLIC LANGUAGE SWITCHER
   ========================================================================== */
.pub-lang-switcher {
    position: relative;
    display: inline-block;
}

.pub-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pub-lang-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
}

.pub-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    padding: 6px;
    z-index: 1050;
    display: none;
}

.pub-lang-switcher.open .pub-lang-dropdown {
    display: block;
}

.pub-lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.825rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: background 0.15s ease;
}

.pub-lang-item:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.pub-lang-item.active {
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 600;
}

/* ==========================================================================
   INTERACTIVE FLOATING WHATSAPP WIDGET
   ========================================================================== */
.pub-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pub-whatsapp-tooltip {
    background: #ffffff;
    color: #0f172a;
    padding: 9px 16px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pub-whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.pub-whatsapp-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.pub-whatsapp-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

.pub-whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.6;
    animation: wa-pulse 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ==========================================================================
   VETMIVO PRICING V2 — ULTRA-DETAILED ENTERPRISE PRICING STYLES
   ========================================================================== */

.v-pricing-hero {
    background: radial-gradient(circle at 50% 0%, rgba(0, 201, 167, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    padding: 4.5rem 1.5rem 2.5rem;
    text-align: center;
}

.v-billing-switch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2.5rem auto 1rem;
    gap: 0.75rem;
}

.v-billing-pills {
    display: inline-flex;
    align-items: center;
    background: #F1F5F9;
    padding: 6px;
    border-radius: 9999px;
    border: 1px solid #E2E8F0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.v-billing-btn {
    border: none;
    background: transparent;
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.925rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    user-select: none;
}

.v-billing-btn:hover {
    color: #0E3A5A;
}

.v-billing-btn.active {
    background: #FFFFFF;
    color: #0E3A5A;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.v-discount-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.35);
}

.v-discount-badge.gold {
    background: linear-gradient(135deg, #FFC857 0%, #D97706 100%);
    color: #0E3A5A;
}

/* Pricing Grid */
.v-pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 2rem auto 4rem;
    padding: 0 1.5rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .v-pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

.v-plan-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.v-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(14, 58, 90, 0.12);
    border-color: #CBD5E1;
}

.v-plan-card.featured {
    border: 2px solid #00C9A7;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6FCFB 100%);
    box-shadow: 0 12px 36px -8px rgba(0, 201, 167, 0.25), 0 4px 12px rgba(0, 0, 0, 0.04);
    transform: scale(1.03);
    z-index: 2;
}

.v-plan-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 24px 48px -10px rgba(0, 201, 167, 0.35);
}

.v-plan-popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00C9A7 0%, #00A3BB 100%);
    color: #FFFFFF;
    font-size: 0.785rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 14px rgba(0, 201, 167, 0.4);
    white-space: nowrap;
}

.v-plan-tier-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0E3A5A;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.v-plan-desc {
    font-size: 0.885rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 42px;
}

.v-plan-price-block {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E2E8F0;
}

.v-price-strike {
    font-size: 0.95rem;
    color: #94A3B8;
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: 2px;
}

.v-price-amount-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.v-price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0E3A5A;
}

.v-price-val {
    font-size: 3rem;
    font-weight: 800;
    color: #0E3A5A;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
}

.v-price-period {
    font-size: 0.95rem;
    color: #64748B;
    font-weight: 500;
}

.v-price-billed-info {
    font-size: 0.8rem;
    color: #10B981;
    font-weight: 600;
    margin-top: 6px;
}

.v-plan-limits-title {
    font-size: 0.775rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0E3A5A;
    margin-bottom: 1rem;
}

.v-plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.v-plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.885rem;
    color: #334155;
    line-height: 1.4;
}

.v-feat-icon-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #E6FAF6;
    color: #00C9A7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.v-plan-cta-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    cursor: pointer;
}

.v-plan-cta-btn.primary {
    background: linear-gradient(135deg, #00C9A7 0%, #00A3BB 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 201, 167, 0.35);
    border: none;
}

.v-plan-cta-btn.primary:hover {
    background: linear-gradient(135deg, #00B395 0%, #008F9B 100%);
    box-shadow: 0 8px 24px rgba(0, 201, 167, 0.45);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.v-plan-cta-btn.outline {
    background: #FFFFFF;
    color: #0E3A5A;
    border: 1.5px solid #CBD5E1;
}

.v-plan-cta-btn.outline:hover {
    border-color: #00C9A7;
    color: #00C9A7;
    background: #F0FDF4;
    transform: translateY(-2px);
}

/* ==========================================================================
   MIGRATION & GUARANTEE BANNER
   ========================================================================== */
.v-migration-card {
    max-width: 1280px;
    margin: 2rem auto 5rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, #0E3A5A 0%, #08243A 100%);
    border-radius: 24px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 40px -10px rgba(14, 58, 90, 0.25);
    position: relative;
    overflow: hidden;
}

.v-migration-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 900px) {
    .v-migration-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   INTERACTIVE COMPARISON TABLE V2
   ========================================================================== */
.v-comparison-wrapper {
    max-width: 1280px;
    margin: 0 auto 6rem;
    padding: 0 1.5rem;
}

.v-comp-table-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.v-comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.v-comp-table th, .v-comp-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #F1F5F9;
}

.v-comp-table thead th {
    background: #F8FAFC;
    color: #0E3A5A;
    font-weight: 700;
    font-size: 1.05rem;
    position: sticky;
    top: 72px;
    z-index: 10;
    border-bottom: 2px solid #E2E8F0;
}

.v-comp-category-row td {
    background: #F1F5F9;
    color: #0E3A5A;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.85rem 1.25rem;
}

.v-comp-feature-name {
    font-weight: 600;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.v-comp-feature-desc {
    font-size: 0.775rem;
    color: #64748B;
    font-weight: 400;
    margin-top: 2px;
}

.v-check-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #E6FAF6;
    color: #00C9A7;
    font-size: 14px;
}

.v-cross-pill {
    color: #CBD5E1;
    font-size: 18px;
}

.v-text-val {
    font-weight: 700;
    color: #0E3A5A;
    font-size: 0.875rem;
}

/* ==========================================================================
   SMS & ADD-ON PACKAGES
   ========================================================================== */
.v-addons-section {
    max-width: 1280px;
    margin: 0 auto 6rem;
    padding: 0 1.5rem;
}

.v-addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .v-addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .v-addons-grid {
        grid-template-columns: 1fr;
    }
}

.v-addon-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.v-addon-card:hover {
    border-color: #00C9A7;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 201, 167, 0.12);
}

/* ==========================================================================
   FAQ ACCORDION V2
   ========================================================================== */
.v-faq-container {
    max-width: 880px;
    margin: 0 auto 6rem;
    padding: 0 1.5rem;
}

.v-faq-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.v-faq-item:hover {
    border-color: #CBD5E1;
}

.v-faq-question {
    padding: 1.35rem 1.5rem;
    font-weight: 700;
    font-size: 1.025rem;
    color: #0E3A5A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.v-faq-question i {
    transition: transform 0.3s ease;
    color: #00C9A7;
}

.v-faq-item.active .v-faq-question i {
    transform: rotate(180deg);
}

.v-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #475569;
    font-size: 0.925rem;
    line-height: 1.6;
    display: none;
    border-top: 1px solid #F1F5F9;
    padding-top: 1.25rem;
}

.v-faq-item.active .v-faq-answer {
    display: block;
}


