:root {
    --med-navy: #0A1428;
    --med-navy-dark: #050A14;
    --med-purple-start: #3A1A5E;
    --med-purple-end: #5E1E7A;
    --med-cyan: #00C4E6;
    --med-cyan-light: #5DD9F2;
    --neu-shadow-light: rgba(255, 255, 255, 0.1);
    --neu-shadow-dark: rgba(0, 0, 0, 0.25);
    --neu-card-bg: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(20px);
}
.hero-section-2026 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--med-navy) 0%, var(--med-purple-start) 50%, var(--med-purple-end) 100%);
    overflow: hidden;
}
.hero-section-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse 800px 400px at 30% 20%, rgba(0, 196, 230, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 600px 300px at 70% 80%, rgba(94, 30, 122, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero-wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,160L48,176C96,192,192,224,288,229.3C384,235,480,213,576,181.3C672,149,768,107,864,112C960,117,1056,171,1152,186.7C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") center bottom / cover no-repeat;
}
.hero-content-2026 {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 4rem 2rem;
}
.hero-title-2026 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero-subtitle-2026 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons-2026 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--med-cyan), var(--med-cyan-light));
    color: var(--med-navy);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 196, 230, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 196, 230, 0.5);
    color: var(--med-navy);
}
.btn-hero-outline {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}
.features-section-2026 {
    padding: 8rem 0;
    background: #f8fafc;
}
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.feature-card-neu {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow:
        8px 8px 24px rgba(0, 0, 0, 0.06),
        -8px -8px 24px rgba(255, 255, 255, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card-neu:hover {
    transform: translateY(-8px);
    box-shadow:
        12px 12px 40px rgba(0, 0, 0, 0.1),
        -8px -8px 24px rgba(255, 255, 255, 0.8),
        inset 0 0 0 1px rgba(0, 196, 230, 0.3);
}
.feature-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e8eef5 0%, #dfe6ee 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-card-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--med-cyan), var(--med-purple-start));
    border-radius: 20px;
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card-placeholder .placeholder-icon {
    color: rgba(255, 255, 255, 0.9);
}
.feature-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--med-navy);
    margin-bottom: 1rem;
}
.feature-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.feature-card-bullets li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-600);
    font-size: 0.9375rem;
}
.feature-card-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--med-cyan);
    border-radius: 50%;
}
.feature-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Instrument Sans', sans-serif !important;
    color: var(--med-purple-start);
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}
.feature-card-btn:hover {
    color: var(--med-cyan);
    gap: 0.75rem;
}
.timeline-section-2026 {
    padding: 6rem 0;
    background: #ffffff;
}
.timeline-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 3rem 0;
    max-width: 1000px;
    margin: 0 auto;
}
.timeline-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--med-cyan), var(--med-purple-start), var(--med-purple-end));
    opacity: 0.3;
}
.timeline-milestone {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.timeline-dot {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--med-cyan), var(--med-purple-start));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0, 196, 230, 0.3);
    transition: all 0.3s ease;
}
.timeline-dot:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 196, 230, 0.4);
}
.timeline-dot svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}
.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--med-navy);
    margin-bottom: 0.25rem;
}
.timeline-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    max-width: 100px;
}
.categories-section-2026 {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.category-card-2026 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card-2026:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.category-card-image {
    height: 200px;
    background: linear-gradient(135deg, #e8eef5 0%, #dfe6ee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-card-content {
    padding: 1.5rem;
    text-align: center;
}
.category-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--med-navy);
    margin: 0;
}
.spotlight-section-2026 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f3f0f7 0%, #e8eef5 100%);
}
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.spotlight-image {
    background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
    border-radius: 24px;
    height: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spotlight-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--med-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.spotlight-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.spotlight-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-size: 1rem;
}
.spotlight-bullets li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--med-cyan);
}
@media (max-width: 768px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .spotlight-image {
        height: 280px;
    }
}
.testimonials-section-2026 {
    padding: 6rem 0;
    background: #ffffff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.testimonial-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.testimonial-card-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--med-cyan), var(--med-purple-start));
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-name {
    font-weight: 700;
    color: var(--med-navy);
    margin-bottom: 0.25rem;
}
.testimonial-title {
    font-size: 0.875rem;
    color: var(--gray-500);
}
.news-section-2026 {
    padding: 6rem 0;
    background: #f8fafc;
}
.news-grid-2026 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}
.news-card-2026 {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.news-card-2026:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.news-card-image {
    height: 200px;
    background: linear-gradient(135deg, #e8eef5 0%, #dfe6ee 100%);
    overflow: hidden;
}
.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news-card-2026:hover .news-card-image img {
    transform: scale(1.05);
}
.news-card-content {
    padding: 1.5rem;
}
.news-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--med-navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.news-card-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.news-card-link {
    font-weight: 600;
    color: var(--med-cyan);
    font-size: 0.9375rem;
}
.news-card-link:hover {
    color: var(--med-purple-start);
}
.contact-section-2026 {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--med-navy) 0%, var(--med-purple-start) 100%);
    position: relative;
}
.contact-card-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.contact-card-glass h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--med-navy);
    text-align: center;
    margin-bottom: 2rem;
}
.form-input-2026 {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--gray-800);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}
.form-input-2026:focus {
    outline: none;
    border-color: var(--med-cyan);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 196, 230, 0.15);
}
.form-input-2026::placeholder {
    color: var(--gray-400);
}
.form-input-2026[type="select"],
select.form-input-2026,
.contact-page-modern select[name="contact_subject"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
}
.btn-submit-2026 {
    width: 100%;
    min-height: 48px;
    padding: 0 32px;
    background: linear-gradient(135deg, var(--med-cyan), var(--med-purple-start));
    color: #ffffff;
    font-family: 'Instrument Sans', sans-serif !important;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-submit-2026:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 196, 230, 0.4);
}
.footer-2026 {
    background: var(--med-navy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}
.footer-2026::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 4rem;
}
.footer-grid-2026 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand-2026 p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 1rem;
}
.footer-links-2026 h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer-links-2026 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-2026 li {
    margin-bottom: 0.75rem;
}
.footer-links-2026 a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}
.footer-links-2026 a:hover {
    color: var(--med-cyan);
}
.footer-bottom-2026 {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}
@media (max-width: 1024px) {
    .footer-grid-2026 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .footer-grid-2026 {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@media (max-width: 768px) {
    .hero-section-2026 {
        min-height: 80vh;
    }
    .hero-title-2026 {
        font-size: 2rem;
    }
    .hero-buttons-2026 {
        flex-direction: column;
        align-items: center;
    }
    .timeline-strip {
        flex-direction: column;
        gap: 2rem;
    }
    .timeline-strip::before {
        display: none;
    }
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
}
.product-card-3d {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}
.product-card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 196, 230, 0.05) 0%,
            rgba(94, 30, 122, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 20px;
}
.product-card-3d:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 196, 230, 0.2);
}
.product-card-3d:hover::before {
    opacity: 1;
}
.product-card-3d .product-image {
    position: relative;
    height: 220px;
    background: linear-gradient(145deg, #f8fafc 0%, #edf2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-card-3d .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-3d:hover .product-image img {
    transform: scale(1.08);
}
.product-card-3d .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, var(--med-cyan), #00A5A8);
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 196, 230, 0.3);
}
.product-card-3d .product-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}
.product-card-3d .product-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--med-cyan);
    margin-bottom: 0.5rem;
}
.product-card-3d .product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--med-navy);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}
.product-card-3d .product-excerpt {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.product-card-3d .product-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.product-card-3d .btn-product {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light, #3385D6) 100%);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}
.product-card-3d .btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}
.product-card-3d .btn-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f8fafc;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    color: var(--gray-600);
    transition: all 0.3s ease;
}
.product-card-3d .btn-pdf:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}
.suture-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.suture-decoration::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 196, 230, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, 50%);
}
.trust-section-2026 {
    padding: 3rem 0;
    background: linear-gradient(90deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}
.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 196, 230, 0.2);
}
.trust-badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--med-cyan), var(--med-purple-start));
    border-radius: 10px;
    color: #ffffff;
}
.trust-badge-icon svg {
    width: 24px;
    height: 24px;
}
.trust-badge-text {
    display: flex;
    flex-direction: column;
}
.trust-badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--med-navy);
    line-height: 1.1;
}
.trust-badge-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}
.btn-glow {
    position: relative;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--med-cyan) 0%, #00A5A8 100%);
    color: var(--med-navy);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--med-cyan), #00A5A8);
    z-index: -1;
    border-radius: 52px;
    filter: blur(15px);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.btn-glow:hover {
    transform: translateY(-3px);
}
.btn-glow:hover::before {
    opacity: 0.8;
}
.medical-grade-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.medical-grade-badge svg {
    width: 14px;
    height: 14px;
}
@media (max-width: 1280px) {
    .product-card-3d .product-image {
        height: 180px;
    }
}
@media (max-width: 768px) {
    .trust-badges {
        gap: 1rem;
    }
    .trust-badge {
        padding: 0.75rem 1rem;
    }
    .trust-badge-number {
        font-size: 1.25rem;
    }
}
.page-header {
  margin-top: var(--header-height);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--med-navy) 0%, var(--med-purple-start) 50%, var(--med-purple-end) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pattern-suture-white);
  background-size: 160px 80px;
  pointer-events: none;
  opacity: 0.1;
}
.page-header.has-custom-bg::before {
  opacity: 0;
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}
.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-header .breadcrumb a:hover {
  color: rgba(255, 255, 255, 1);
}
.page-header h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.page-content.narrow {
  max-width: 900px;
  margin: 0 auto;
}
.lang-switcher-modern {
  position: relative;
  display: inline-flex;
}
.lang-switcher-modern .lang-toggle {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  color: var(--gray-800);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}
.lang-switcher-modern .lang-toggle:hover {
  border-color: rgba(0, 102, 204, 0.25);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.lang-switcher-modern .lang-flag {
  font-size: 1rem;
  line-height: 1;
}
.lang-switcher-modern .lang-caret {
  font-size: 0.75rem;
  opacity: 0.75;
}
.lang-switcher-modern .lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 210px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
  padding: 8px;
  display: none;
  z-index: 1002;
}
.lang-switcher-modern.is-open .lang-menu {
  display: block;
}
.lang-switcher-modern .lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 700;
  transition: all var(--transition-fast);
}
.lang-switcher-modern .lang-item:hover {
  background: rgba(0, 102, 204, 0.08);
}
.lang-switcher-modern .lang-item.is-active {
  background: rgba(0, 102, 204, 0.12);
}
.lang-switcher-modern .lang-name {
  flex: 1 1 auto;
  font-weight: 700;
}
.lang-switcher-modern .lang-code {
  font-size: 0.75rem;
  opacity: 0.7;
  font-weight: 900;
  letter-spacing: 0.06em;
}
