/* ═══════════════════════════════════════════════
   VetLink Homepage Styles - Premium & Modern Redesign
   ═══════════════════════════════════════════════ */

:root {
    --vl-primary: #4f46e5;
    --vl-primary-soft: #6366f1;
    --vl-secondary: #10b981;
    --vl-accent: #3b82f6;
    --vl-dark: #0f172a;
    --vl-dark-light: #1e293b;
    --vl-gray: #64748b;
    --vl-gray-light: #94a3b8;
    --vl-light: #f8fafc;
    --vl-white: #ffffff;
    --vl-radius: 20px;
    --vl-radius-sm: 12px;
    --vl-radius-lg: 30px;
    --vl-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --vl-shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --vl-glass: rgba(255, 255, 255, 0.7);
    --vl-glass-border: rgba(255, 255, 255, 0.4);
}

body {
    font-family: 'Inter', 'Noto Sans Bengali', sans-serif;
    color: var(--vl-dark);
    background-color: var(--vl-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Noto Sans Bengali', sans-serif;
    font-weight: 700;
}

/* ── Navbar Redesign ── */
.public-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}
.public-navbar .navbar-brand {
    font-size: 1.4rem;
    color: var(--vl-dark);
}
.public-navbar .nav-link {
    font-weight: 500;
    color: var(--vl-dark-light);
    margin: 0 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.public-navbar .nav-link:hover {
    color: var(--vl-primary);
}
.btn-login {
    background: var(--vl-primary);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 30px !important;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

/* ── Section Header ── */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 20px;
    gap: 8px;
}
.section-badge i { font-size: 0.65rem; }

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* ── Hero Section (Premium Full-Width) ── */
.hero-section-full {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(79, 70, 229, 0.3) 100%);
    z-index: 1;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
    max-width: 500px;
}

.hero-section-full .container {
    position: relative;
    z-index: 3;
}

.hero-badge-glass {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 15px;
    gap: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-title-full {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-subtitle-full {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-btns-full .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-glass-primary {
    background: var(--vl-primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.btn-glass-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
    background: var(--vl-primary-soft);
    color: #fff;
}

.btn-glass-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-glass-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

@media (max-width: 991px) {
    .hero-title-full { font-size: 3rem; }
    .hero-glass-card { padding: 40px 30px; margin: 0 auto; text-align: center; }
    .hero-btns-full { display: flex; flex-direction: column; gap: 15px; }
    .hero-btns-full .btn { margin: 0 !important; }
}

/* ── Global Reveal System ── */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-up { transform: translateY(50px); }
.reveal-down { transform: translateY(-50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.9); }

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ── Card & Element Enhancements ── */
.stat-card, .category-card, .product-card-v3, .card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.stat-card:hover, .product-card-v3:hover, .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

/* ── Section Title Animate ── */
.section-title-wrapper {
    overflow: hidden;
    position: relative;
}

.section-title-line {
    width: 0;
    height: 4px;
    background: var(--vl-primary);
    margin-top: 15px;
    transition: width 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-delay: 0.4s;
}

.reveal.active .section-title-line {
    width: 80px;
}

/* ── Stats Section ── */
.stats-section {
    padding: 70px 0;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}
.stat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--vl-radius);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    box-shadow: var(--vl-shadow);
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--vl-shadow-lg);
    border-color: var(--vl-primary-soft);
}
.stat-val {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vl-primary);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--vl-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Categories Section ── */
.categories-section {
    padding: 100px 0;
    background: #fdfdfd;
}
.category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: var(--vl-shadow);
}
.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-card:hover .category-img {
    transform: scale(1.1);
}
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
}
.category-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.category-desc {
    font-size: 0.95rem;
    opacity: 0.8;
}

.category-card.bg-green {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}
.category-card.bg-blue {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}
.category-card.bg-light {
    background: #f8fafc;
    color: var(--vl-dark);
}
.category-card.bg-light .category-overlay {
    background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, transparent 60%);
    color: var(--vl-dark);
}

/* ── Mobile App Section ── */
.app-section {
    padding: 100px 0;
    background: #fff;
}
.app-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}
.app-mockup img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}
.app-content {
    background: #eff6ff;
    border-radius: 40px;
    padding: 60px;
    height: 100%;
}
.app-download-btn {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none !important;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.app-download-btn:hover {
    background: #334155;
    transform: translateY(-3px);
}
.app-download-btn i { font-size: 1.8rem; margin-right: 12px; }
.app-download-btn div small { display: block; font-size: 0.7rem; opacity: 0.7; }
.app-download-btn div strong { font-size: 1rem; }

/* ── CTA Section ── */
.consultation-cta {
    padding: 80px 0;
}
.cta-box {
    background: #1e293b;
    border-radius: 30px;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.btn-contact-specialist {
    background: #059669;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
}
.btn-contact-specialist:hover {
    background: #047857;
    transform: scale(1.05);
}
.cta-phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}
.cta-phone-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* ── Footer ── */
.site-footer {
    background: #0f172a;
    color: rgba(255,255,255,0.7);
    padding: 100px 0 50px;
}
.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}
.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}
.social-link:hover {
    background: var(--vl-primary);
    transform: scale(1.1);
}
.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}
.footer-contact i {
    color: var(--vl-primary);
    margin-top: 5px;
}

/* ── Products Page Specific ── */
.products-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
}
.products-hero-img {
    border-radius: 24px;
    box-shadow: var(--vl-shadow-lg);
    border: 8px solid #fff;
}

.sidebar-filter-section {
    position: sticky;
    top: 100px;
}
.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--vl-dark);
}
.category-list {
    list-style: none;
    padding: 0;
}
.category-list li {
    margin-bottom: 12px;
}
.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--vl-gray);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}
.category-link:hover, .category-link.active {
    background: #eef2ff;
    color: var(--vl-primary);
    font-weight: 600;
}
.category-count-badge {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--vl-gray-light);
}

.manufacturer-filter {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
}
.form-check-label {
    font-size: 0.85rem;
    color: var(--vl-gray);
    cursor: pointer;
}

.custom-formulation-cta {
    background: var(--vl-dark);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}
.custom-formulation-cta a {
    color: var(--vl-accent);
    text-decoration: underline;
    font-size: 0.85rem;
}

.products-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}
.search-container {
    flex: 1;
    position: relative;
}
.search-input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background: #f1f5f9;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
}
.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vl-gray-light);
}

.product-card-v3 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}
.product-card-v3:hover {
    box-shadow: var(--vl-shadow-lg);
    transform: translateY(-8px);
}
.product-img-v3 {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}
.product-img-v3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}
.product-tag-v3 {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    background: var(--vl-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}
.product-body-v3 {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-title-v3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--vl-dark);
}
.product-desc-v3 {
    font-size: 0.85rem;
    color: var(--vl-gray-light);
    line-height: 1.6;
    margin-bottom: 20px;
}
.product-footer-v3 {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}
.product-size-v3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vl-gray);
}
.product-link-v3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--vl-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.segments-section {
    padding: 100px 0;
    background: #f8fafc;
}
.segment-card {
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.segment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.segment-card:hover img {
    transform: scale(1.1);
}
.segment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.newsletter-section {
    background: var(--vl-primary);
    padding: 80px 0;
    border-radius: 30px;
    margin: 80px 0;
}
.newsletter-input-group {
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}
.newsletter-input {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #fff;
    flex: 1;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-btn {
    background: #fff;
    color: var(--vl-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.2s;
}
.newsletter-btn:hover { background: var(--vl-accent); transform: translateY(-2px); }

.contact-hero {
    padding: 140px 0 80px;
    background: #f8fafc;
}
.contact-hero-icon {
    width: 200px;
    height: 200px;
    background: #e2e8f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    position: relative;
}
.contact-hero-icon i.floating-lab {
    font-size: 5rem;
    opacity: 0.3;
}
.badge-lab {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vl-primary);
}

.support-queue-card {
    background: #fff;
    border-radius: var(--vl-radius);
    padding: 30px;
}
.status-badge-item {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.status-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-soft-green { background: #dcfce7; color: #166534; }
.bg-soft-blue { background: #dbeafe; color: #1e40af; }

.contact-form-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--vl-shadow-lg);
}
.form-protocol-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--vl-gray-light);
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}
.form-modern-input {
    background: #f1f5f9;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--vl-dark);
}
.form-modern-input:focus {
    background: #e2e8f0;
    box-shadow: none;
    outline: none;
}

.hub-card {
    background: #f1f5f9;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.hub-card:hover {
    background: #fff;
    box-shadow: var(--vl-shadow-lg);
    transform: translateY(-10px);
}
.hub-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
}
.hub-details {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    font-size: 0.9rem;
}
.hub-details li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.hub-details i { color: var(--vl-primary); font-size: 0.8rem; margin-top: 4px; }

.map-section {
    padding: 100px 0;
    background: url('https://img.freepik.com/free-vector/world-map-composed-dots-lines-global-business-concept_1017-15875.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
}
.map-overlay-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--vl-shadow-lg);
}

/* ── Career Page Specific ── */
.career-hero {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(16, 45, 30, 0.8), rgba(16, 45, 30, 0.6)), url('https://img.freepik.com/free-photo/vibrant-green-leaf-texture-nature-background_53876-104033.jpg') center/cover;
    color: #fff;
    text-align: left;
}
.career-hero .hero-title { color: #fff; }
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
}
.value-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--vl-primary);
    font-size: 1.5rem;
}

.operations-section {
    padding: 100px 0;
    background: #f8fafc;
}
.job-card-v4 {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid transparent;
    transition: all 0.3s;
}
.job-card-v4:hover {
    box-shadow: var(--vl-shadow-lg);
    border-left-color: var(--vl-primary);
    transform: translateX(10px);
}
.job-tag-v4 {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    background: #e0e7ff;
    color: #4338ca;
    margin-left: 10px;
}
.job-info {
    display: flex;
    gap: 20px;
    color: var(--vl-gray-light);
    font-size: 0.85rem;
    margin-top: 5px;
}
.btn-apply-protocol {
    color: var(--vl-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.day-life-section {
    padding: 100px 0;
}
.day-profile-img {
    border-radius: 24px;
    box-shadow: var(--vl-shadow-lg);
    width: 100%;
}
.quote-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: -60px;
    margin-left: 20px;
    max-width: 90%;
    position: relative;
    z-index: 10;
}
.progress-stat {
    margin-bottom: 25px;
}
.progress-bar-custom {
    height: 12px;
    background: #f1f5f9;
    border-radius: 50px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #059669, #10b981);
    border-radius: 50px;
}

.benefits-grid {
    padding: 100px 0;
    background: #fff;
}
.benefit-card-v4 {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s;
}
.benefit-card-v4:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}
.benefit-icon-v4 {
    color: var(--vl-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.ready-lead-section {
    padding: 100px 0;
    background: #475569;
    background: url('https://img.freepik.com/free-vector/abstract-connected-dots-lines-network-background_1017-17559.jpg') center/cover;
    border-radius: 30px;
    margin-bottom: 80px;
    position: relative;
}
.ready-lead-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.85);
    border-radius: 30px;
}
.ready-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

/* -- Stylish Login Icon Button -- */
.btn-login-stylish { 
    width: 42px; 
    height: 42px; 
    background: linear-gradient(135deg, var(--vl-primary), var(--vl-primary-soft)); 
    color: #fff !important; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.15rem; 
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    text-decoration: none; 
    position: relative; 
    overflow: hidden; 
}
.btn-login-stylish::before { 
    content: ""; 
    position: absolute; 
    top: 0; 
    left: -100%; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); 
    transition: 0.5s; 
}
.btn-login-stylish:hover { 
    transform: translateY(-4px) rotate(5deg); 
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4); 
}
.btn-login-stylish:hover::before { 
    left: 100%; 
}
.btn-login-stylish i { 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); 
}
