/* Medikab Pharma Design System - Static HTML Version */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Design System */
:root {
    /* Core Brand Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(210, 30%, 8%);
    
    /* Card System */
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(210, 30%, 8%);
    
    /* Medikab Blue Primary */
    --primary: hsl(245, 85%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(245, 80%, 65%);
    --primary-dark: hsl(245, 90%, 45%);
    
    /* Clean Secondary */
    --secondary: hsl(245, 15%, 96%);
    --secondary-foreground: hsl(245, 30%, 8%);
    
    /* Purple Accent */
    --accent: hsl(260, 75%, 60%);
    --accent-foreground: hsl(0, 0%, 100%);
    --accent-light: hsl(260, 70%, 70%);
    --accent-glow: hsl(260, 80%, 50%);
    
    /* Muted Scientific Grays */
    --muted: hsl(210, 15%, 95%);
    --muted-foreground: hsl(210, 20%, 45%);
    
    /* Supporting Colors */
    --success: hsl(142, 76%, 36%);
    --warning: hsl(45, 93%, 47%);
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);
    
    /* Interface Elements */
    --border: hsl(210, 20%, 90%);
    --input: hsl(210, 20%, 95%);
    --ring: hsl(210, 85%, 25%);
    
    /* Medikab Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(245, 85%, 55%), hsl(260, 75%, 60%));
    --gradient-card: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(245, 15%, 98%));
    --gradient-accent: linear-gradient(135deg, hsl(260, 75%, 60%), hsl(260, 80%, 50%));
    
    /* Molecular Animation Colors */
    --molecule-primary: hsl(245, 85%, 55%);
    --molecule-secondary: hsl(260, 75%, 60%);
    --molecule-tertiary: hsl(245, 20%, 85%);
    
    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px hsla(210, 30%, 8%, 0.08);
    --shadow-medium: 0 8px 30px hsla(210, 30%, 8%, 0.12);
    --shadow-strong: 0 16px 50px hsla(210, 30%, 8%, 0.16);
    --shadow-glow: 0 0 40px hsla(174, 60%, 45%, 0.3);
    
    /* Animation Timing */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --radius: 12px;
}

/* Base Styles */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    font-feature-settings: "rlig" 1, "calt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px hsla(260, 75%, 60%, 0.3); 
    }
    50% { 
        box-shadow: 0 0 40px hsla(260, 75%, 60%, 0.6); 
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Icon Sizes */
.icon {
    width: 24px;
    height: 24px;
}

.icon-sm {
    width: 20px;
    height: 20px;
}

.icon-lg {
    width: 32px;
    height: 32px;
}

.icon-404 {
    width: 80px;
    height: 80px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.btn-icon:hover {
    color: var(--primary);
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    background: hsla(260, 75%, 60%, 0.1);
    color: var(--accent);
    border: 1px solid hsla(260, 75%, 60%, 0.2);
    margin-bottom: 16px;
}

.badge.primary {
    background: hsla(245, 85%, 55%, 0.1);
    color: var(--primary);
    border-color: hsla(245, 85%, 55%, 0.2);
}

.badge.accent {
    background: hsla(260, 75%, 60%, 0.1);
    color: var(--accent);
    border-color: hsla(260, 75%, 60%, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    box-shadow: var(--shadow-soft);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 16px 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--foreground);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-fallback {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
    display: none;
}

.nav-desktop {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: var(--transition-smooth);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: block;
    }
}

.mobile-menu-toggle {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.nav-mobile {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--background);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-content {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link-mobile {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: var(--transition-smooth);
    border-radius: 8px;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    color: var(--primary);
    background: hsla(245, 85%, 55%, 0.05);
}

.mobile-cta {
    padding: 16px;
}

/* Main Content */
.main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, hsla(245, 85%, 55%, 0.02), hsla(260, 75%, 60%, 0.02));
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.molecules {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.molecule {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.molecule:nth-child(1) {
    top: 80px;
    left: 80px;
    animation-delay: 0s;
}

.molecule:nth-child(2) {
    top: 160px;
    right: 128px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    opacity: 0.2;
    animation-delay: 2s;
}

.molecule:nth-child(3) {
    bottom: 160px;
    left: 25%;
    width: 12px;
    height: 12px;
    opacity: 0.4;
    animation-delay: 4s;
}

.molecule:nth-child(4) {
    top: 33%;
    right: 80px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    opacity: 0.3;
    animation-delay: 1s;
}

.molecule:nth-child(5) {
    bottom: 128px;
    right: 25%;
    animation-delay: 3s;
}

.molecule-large {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: blur(4px);
}

.molecule-large:nth-child(6) {
    top: 40px;
    left: 33%;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, hsla(245, 85%, 55%, 0.2), hsla(260, 75%, 60%, 0.2));
    animation-delay: 5s;
}

.molecule-large:nth-child(7) {
    bottom: 80px;
    right: 33%;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, hsla(260, 75%, 60%, 0.15), hsla(245, 85%, 55%, 0.15));
    animation-delay: 6s;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 96px;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: hsla(260, 75%, 60%, 0.1);
    border: 1px solid hsla(260, 75%, 60%, 0.2);
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    animation: fade-in-up 0.8s ease-out forwards;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 600px;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
    border-radius: 12px;
    background: hsla(245, 85%, 55%, 0.1);
    color: var(--primary);
}

.stat-icon.accent {
    background: hsla(260, 75%, 60%, 0.1);
    color: var(--accent);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

.stat-number.accent {
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-right {
    position: relative;
    animation: scale-in 0.6s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-card {
    position: relative;
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-strong);
    border: 1px solid hsla(210, 20%, 90%, 0.5);
}

.hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.hero-card-header p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-divider {
    height: 4px;
    background: var(--gradient-hero);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    font-size: 0.875rem;
}

.card-stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

.card-stat-number.accent {
    color: var(--accent);
}

.card-stat-label {
    color: var(--muted-foreground);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: -24px;
    right: -24px;
    width: 80px;
    height: 80px;
    border: 1px solid hsla(260, 75%, 60%, 0.2);
}

.floating-card-2 {
    bottom: -24px;
    left: -24px;
    width: 64px;
    height: 64px;
    border: 1px solid hsla(245, 85%, 55%, 0.2);
    animation-delay: 2s;
}

.floating-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
}

.floating-dot.accent {
    background: var(--accent);
}

/* Products Overview Section */
.products-overview {
    position: relative;
    padding: 80px 0;
    background: hsla(210, 15%, 95%, 0.3);
    overflow: hidden;
}

.bg-elements {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: blur(40px);
}

.bg-element-1 {
    top: 40px;
    left: 25%;
    width: 112px;
    height: 112px;
    background: linear-gradient(135deg, hsla(245, 85%, 55%, 0.08), hsla(260, 75%, 60%, 0.08));
    animation-delay: 0s;
}

.bg-element-2 {
    top: 50%;
    right: 40px;
    width: 144px;
    height: 144px;
    background: linear-gradient(135deg, hsla(260, 75%, 60%, 0.06), hsla(245, 85%, 55%, 0.06));
    animation-delay: 2s;
}

.bg-element-3 {
    bottom: 80px;
    left: 40px;
    width: 80px;
    height: 80px;
    background: hsla(245, 85%, 55%, 0.12);
    animation: pulse-glow 3s ease-in-out infinite;
    animation-delay: 1s;
}

.bg-element-4 {
    bottom: 33%;
    right: 33%;
    width: 96px;
    height: 96px;
    background: hsla(260, 75%, 60%, 0.1);
    animation-delay: 3s;
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 24px;
    animation: fade-in-up 0.8s ease-out forwards;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.products-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }
.product-card:nth-child(5) { animation-delay: 0.4s; }
.product-card:nth-child(6) { animation-delay: 0.5s; }

.product-card:hover {
    transform: translateY(-8px) rotate(1deg) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.product-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(245, 85%, 55%, 0.3), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: hsla(245, 85%, 55%, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    transition: var(--transition-smooth);
}

.product-card:hover .product-icon {
    animation: pulse-glow 3s ease-in-out infinite;
    transform: scale(1.1);
}

.product-count {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 4px 8px;
    background: hsla(0, 0%, 100%, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--foreground);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.product-cta:hover {
    color: var(--primary);
    background: hsla(245, 85%, 55%, 0.05);
}

.product-cta:hover .icon-sm {
    transform: translateX(4px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.section-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    position: relative;
    padding: 80px 0;
    background: var(--background);
    overflow: hidden;
}

.bg-element-about {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: blur(32px);
}

.bg-element-about-1 {
    top: 80px;
    left: 40px;
    width: 96px;
    height: 96px;
    background: hsla(245, 85%, 55%, 0.05);
    animation-delay: 0s;
}

.bg-element-about-2 {
    top: 33%;
    right: 80px;
    width: 128px;
    height: 128px;
    background: hsla(260, 75%, 60%, 0.05);
    animation-delay: 3s;
}

.bg-element-about-3 {
    bottom: 25%;
    left: 33%;
    width: 64px;
    height: 64px;
    background: hsla(245, 85%, 55%, 0.1);
    animation: pulse-glow 3s ease-in-out infinite;
    animation-delay: 1s;
}

.bg-element-about-4 {
    bottom: 160px;
    right: 25%;
    width: 80px;
    height: 80px;
    background: hsla(260, 75%, 60%, 0.08);
    animation-delay: 4s;
}

.bg-element-about-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, hsla(245, 85%, 55%, 0.03), hsla(260, 75%, 60%, 0.03));
    animation: pulse-glow 3s ease-in-out infinite;
}

.about-grid {
    display: grid;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: slide-in-left 0.8s ease-out forwards;
}

.mission-vision-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.mission-vision-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
}

.card-icon.primary {
    background: var(--gradient-hero);
}

.card-icon.accent {
    background: var(--gradient-accent);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-title.primary {
    color: var(--primary);
}

.card-title.accent {
    color: var(--accent);
}

.card-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    animation: scale-in 0.6s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.achievement-card {
    text-align: center;
    padding: 24px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.achievement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: hsla(245, 85%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.achievement-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.values-section {
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.values-header {
    text-align: center;
    margin-bottom: 48px;
}

.values-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 16px;
    animation: fade-in-up 0.8s ease-out forwards;
}

.values-description {
    color: var(--muted-foreground);
    max-width: 512px;
    margin: 0 auto;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.values-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 24px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0s; }
.value-card:nth-child(2) { animation-delay: 0.1s; }
.value-card:nth-child(3) { animation-delay: 0.2s; }
.value-card:nth-child(4) { animation-delay: 0.3s; }

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.value-card:hover .value-icon {
    background: hsla(260, 75%, 60%, 0.2);
}

.value-card:hover .value-title {
    color: var(--accent);
}

.value-card:hover .value-icon .icon-lg {
    transform: scale(1.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: hsla(260, 75%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.value-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.about-cta {
    text-align: center;
    background: hsla(210, 15%, 95%, 0.5);
    border-radius: 24px;
    padding: 48px 32px;
    border: 1px solid var(--border);
    animation: fade-in-up 0.8s ease-out forwards;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .about-cta {
        padding: 64px 48px;
    }
}

.cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: hsla(210, 15%, 95%, 0.3);
}

.contact-grid {
    display: grid;
    gap: 32px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form-section {
    animation: slide-in-left 0.8s ease-out forwards;
}

.contact-form-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    padding: 32px;
}

.form-header {
    margin-bottom: 32px;
}

.form-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-title .icon.primary {
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid hsla(210, 20%, 90%, 0.5);
    border-radius: 8px;
    background: var(--input);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(245, 85%, 55%, 0.1);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card,
.features-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    padding: 24px;
    animation: scale-in 0.6s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.features-card {
    animation-delay: 0.5s;
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-info-list,
.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item,
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
}

.contact-info-item:hover,
.feature-item:hover {
    transform: translateX(4px);
}

.info-icon,
.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: hsla(245, 85%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.info-icon .icon.primary {
    color: var(--primary);
}

.feature-icon {
    background: hsla(260, 75%, 60%, 0.1);
}

.feature-icon .icon.accent {
    color: var(--accent);
}

.contact-info-item:hover .info-icon,
.feature-item:hover .feature-icon {
    background: hsla(245, 85%, 55%, 0.2);
}

.feature-item:hover .feature-icon {
    background: hsla(260, 75%, 60%, 0.2);
}

.info-content h4,
.feature-item h4 {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.info-content p,
.feature-item p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.info-content a,
.info-content span {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.info-content a:hover {
    color: var(--primary-dark);
}

.emergency-card {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    animation: scale-in 0.6s ease-out forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.emergency-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.emergency-icon {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

.emergency-card h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.emergency-card p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.emergency-phone {
    font-weight: bold;
    font-size: 1.125rem;
    color: var(--primary-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.emergency-phone:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    gap: 32px;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: hsla(0, 0%, 100%, 0.1);
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 0.875rem;
}

.footer-contact-item .icon-sm {
    color: hsla(0, 0%, 100%, 0.6);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: hsla(0, 0%, 100%, 0.1);
    color: var(--primary-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: hsla(0, 0%, 100%, 0.2);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-foreground);
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--primary-foreground);
}

/* Products Page Specific Styles */
.products-page {
    min-height: 100vh;
    background: var(--background);
}

.products-header {
    position: relative;
    padding: 64px 0;
    background: hsla(210, 15%, 95%, 0.3);
    overflow: hidden;
}

.back-button-container {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.back-button {
    transition: var(--transition-smooth);
}

.back-button:hover {
    transform: scale(1.05);
}

.products-header-content {
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    animation: fade-in-up 0.8s ease-out forwards;
}

@media (min-width: 768px) {
    .products-title {
        font-size: 3rem;
    }
}

.products-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.products-header .bg-element-5 {
    bottom: 40px;
    right: 40px;
    width: 112px;
    height: 112px;
    background: hsla(245, 85%, 55%, 0.05);
    animation-delay: 3s;
}

.products-catalog {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
}

.bg-element-small {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.bg-element-small-1 {
    top: 160px;
    left: 25%;
    width: 24px;
    height: 24px;
    background: hsla(260, 75%, 60%, 0.2);
    animation-delay: 1s;
}

.bg-element-small-2 {
    bottom: 160px;
    right: 25%;
    width: 32px;
    height: 32px;
    background: hsla(245, 85%, 55%, 0.15);
    animation-delay: 3s;
}

.bg-element-small-3 {
    top: 50%;
    left: 40px;
    width: 16px;
    height: 16px;
    background: hsla(260, 75%, 60%, 0.3);
    animation-delay: 2s;
}

.bg-element-small-4 {
    top: 80px;
    right: 33%;
    width: 20px;
    height: 20px;
    background: hsla(245, 85%, 55%, 0.25);
    animation-delay: 4s;
}

.products-catalog-grid {
    display: grid;
    gap: 32px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .products-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.catalog-product-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    animation: bounce-in 1s ease-out forwards;
    opacity: 0;
}

.catalog-product-card:nth-child(1) { animation-delay: 0s; }
.catalog-product-card:nth-child(2) { animation-delay: 0.1s; }
.catalog-product-card:nth-child(3) { animation-delay: 0.2s; }
.catalog-product-card:nth-child(4) { animation-delay: 0.3s; }
.catalog-product-card:nth-child(5) { animation-delay: 0.4s; }
.catalog-product-card:nth-child(6) { animation-delay: 0.5s; }
.catalog-product-card:nth-child(7) { animation-delay: 0.6s; }

.catalog-product-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-strong);
}

.catalog-product-card:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, hsla(260, 75%, 60%, 0.1), transparent);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
    pointer-events: none;
}

.catalog-product-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.catalog-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.catalog-product-card:hover .catalog-product-image img {
    transform: scale(1.1);
}

.catalog-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(245, 85%, 55%, 0.2), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.catalog-product-card:hover .catalog-product-overlay {
    opacity: 1;
}

.catalog-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 8px;
    background: hsla(0, 0%, 100%, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.catalog-product-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: hsla(245, 85%, 55%, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    transition: var(--transition-smooth);
}

.catalog-product-card:hover .catalog-product-icon {
    animation: pulse-glow 3s ease-in-out infinite;
    transform: scale(1.1);
}

.catalog-product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalog-product-title {
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.catalog-product-card:hover .catalog-product-title {
    color: var(--primary);
}

.catalog-product-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.catalog-product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-badge {
    padding: 4px 8px;
    background: hsla(260, 75%, 60%, 0.1);
    color: hsla(260, 75%, 60%, 0.8);
    border: 1px solid hsla(260, 75%, 60%, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.feature-badge:hover {
    background: hsla(260, 75%, 60%, 0.1);
}

.catalog-product-details {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.catalog-product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--foreground);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.catalog-product-cta:hover {
    color: var(--primary);
    background: hsla(245, 85%, 55%, 0.05);
}

.catalog-product-cta:hover .icon-sm {
    transform: translateX(4px);
}

.products-cta {
    position: relative;
    padding: 64px 0;
    background: hsla(210, 15%, 95%, 0.3);
    overflow: hidden;
}

.bg-element-cta {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: blur(40px);
}

.bg-element-cta-1 {
    top: 40px;
    left: 80px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, hsla(245, 85%, 55%, 0.1), hsla(260, 75%, 60%, 0.1));
    animation-delay: 0s;
}

.bg-element-cta-2 {
    bottom: 40px;
    right: 80px;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, hsla(260, 75%, 60%, 0.15), hsla(245, 85%, 55%, 0.15));
    animation-delay: 2s;
}

.bg-element-cta-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, hsla(245, 85%, 55%, 0.05), hsla(260, 75%, 60%, 0.05));
    animation: pulse-glow 3s ease-in-out infinite;
}

.products-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: scale-in 0.6s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.products-cta-content .cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 24px;
    animation: fade-in-up 0.8s ease-out forwards;
}

.products-cta-content .cta-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.products-cta-content .btn {
    transition: var(--transition-smooth);
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.products-cta-content .btn:hover {
    transform: scale(1.05);
}

/* 404 Page Styles */
.not-found-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsla(245, 85%, 55%, 0.02), hsla(260, 75%, 60%, 0.02));
    padding: 32px 16px;
}

.not-found-container {
    max-width: 512px;
    width: 100%;
}

.not-found-content {
    text-align: center;
    background: var(--card);
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border);
}

.not-found-icon {
    margin-bottom: 24px;
    color: var(--muted-foreground);
}

.not-found-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 16px;
}

.not-found-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.not-found-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 32px;
}

.not-found-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .not-found-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.popular-links {
    text-align: left;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.popular-links h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.popular-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popular-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.popular-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .molecules,
    .bg-elements {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .main {
        padding-top: 0 !important;
    }
}