:root { --primary-color: #1A4B5C; --primary-light: #2E6B7C; --primary-dark: #0F3A47; --secondary-color: #2A7A5A; --secondary-light: #3D8A6D; --secondary-dark: #1F5F47; --accent-color: #F39C3F; --accent-light: #F5B263; --accent-dark: #E88A26; --gray-50: #F8FAFC; --gray-100: #F1F5F9; --gray-200: #E2E8F0; --gray-300: #CBD5E1; --gray-400: #94A3B8; --gray-500: #64748B; --gray-600: #475569; --gray-700: #334155; --gray-800: #1E293B; --gray-900: #0F172A; --text-primary: #1E293B; --text-secondary: #475569; --text-tertiary: #64748B; --text-inverse: #FFFFFF; --bg-primary: #FFFFFF; --bg-secondary: #F8FAFC; --bg-accent: #F0F9FF; --bg-dark: #1E293B; --gradient-primary: linear-gradient(135deg, #1A4B5C 0%, #2A7A5A 100%); --gradient-hero: linear-gradient(135deg, #1A4B5C 0%, #2E6B7C 50%, #2A7A5A 100%); --gradient-card: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%); --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; --font-secondary: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif; --font-mono: 'JetBrains Mono', 'Fira Code', 'Monaco', monospace; --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem; --space-lg: 1.5rem; --space-xl: 2rem; --space-2xl: 3rem; --space-3xl: 4rem; --radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.75rem; --radius-xl: 1rem; --radius-full: 50%; --transition-fast: 150ms ease-in-out; --transition-normal: 250ms ease-in-out; --transition-slow: 350ms ease-in-out; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: var(--font-primary); font-size: 1rem; line-height: 1.6; color: var(--text-primary); background-color: var(--bg-primary); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); } .container-wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--space-md); } .container-narrow { max-width: 800px; margin: 0 auto; padding: 0 var(--space-md); } .header { position: fixed; top: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray-200); z-index: 1000; transition: var(--transition-normal); } .navbar { padding: var(--space-md) 0; } .navbar .container { display: flex; align-items: center; justify-content: space-between; } .nav-brand { display: flex; align-items: center; gap: var(--space-md); } .brand-logo { width: 48px; height: 48px; border-radius: var(--radius-full); overflow: hidden; flex-shrink: 0; } .brand-logo img { width: 100%; height: 100%; object-fit: cover; } .brand-content h1 { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); letter-spacing: -0.025em; } .brand-content .tagline { font-size: 0.875rem; color: var(--text-secondary); font-weight: 500; } .nav-menu { display: flex; list-style: none; gap: var(--space-lg); align-items: center; } .nav-menu a { text-decoration: none; color: var(--text-secondary); font-weight: 500; font-size: 0.95rem; transition: var(--transition-fast); padding: var(--space-sm) var(--space-md); border-radius: var(--radius-md); } .nav-menu a:hover, .nav-menu a.active { color: var(--primary-color); background-color: var(--bg-accent); } .btn-primary { background: var(--gradient-primary) !important; color: var(--text-inverse) !important; padding: var(--space-sm) var(--space-lg) !important; border-radius: var(--radius-md) !important; font-weight: 600 !important; box-shadow: var(--shadow-sm) !important; transition: var(--transition-normal) !important; } .btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md) !important; } .hamburger { display: none; flex-direction: column; cursor: pointer; gap: 4px; } .hamburger span { width: 24px; height: 3px; background-color: var(--primary-color); border-radius: 2px; transition: var(--transition-fast); } .hero-corporate { background: var(--gradient-hero); color: var(--text-inverse); padding: 120px 0 80px; position: relative; overflow: hidden; } .hero-corporate::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%); pointer-events: none; } .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; position: relative; z-index: 2; } .hero-profile { display: flex; flex-direction: column; gap: var(--space-xl); } .profile-avatar { width: 120px; height: 120px; border-radius: var(--radius-full); background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); border: 3px solid rgba(255, 255, 255, 0.2); } .profile-avatar i { font-size: 3rem; color: rgba(255, 255, 255, 0.8); } .profile-badges { display: flex; gap: var(--space-sm); flex-wrap: wrap; } .badge { padding: var(--space-xs) var(--space-md); border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.025em; text-transform: uppercase; } .badge-primary { background: rgba(255, 255, 255, 0.2); color: var(--text-inverse); border: 1px solid rgba(255, 255, 255, 0.3); } .badge-secondary { background: var(--accent-color); color: var(--text-inverse); } .badge-accent { background: var(--secondary-color); color: var(--text-inverse); } .profile-title { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; } .profile-subtitle { font-size: 1.5rem; font-weight: 400; color: rgba(255, 255, 255, 0.9); line-height: 1.4; } .profile-description { font-size: 1.125rem; color: rgba(255, 255, 255, 0.8); line-height: 1.6; max-width: 500px; } .hero-stats { display: flex; flex-direction: column; gap: var(--space-xl); } .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); } .stat-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-lg); padding: var(--space-lg); text-align: center; transition: var(--transition-normal); } .stat-card:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.15); } .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--accent-color); display: block; line-height: 1; } .stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); font-weight: 500; margin-top: var(--space-sm); } .hero-cta { display: flex; gap: var(--space-md); flex-wrap: wrap; } .btn { display: inline-flex; align-items: center; gap: var(--space-sm); padding: var(--space-md) var(--space-xl); border-radius: var(--radius-md); font-weight: 600; text-decoration: none; transition: var(--transition-normal); border: none; cursor: pointer; font-size: 1rem; } .btn-white { background: var(--bg-primary); color: var(--primary-color); box-shadow: var(--shadow-sm); } .btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); } .btn-outline { background: transparent; color: var(--text-inverse); border: 2px solid rgba(255, 255, 255, 0.3); } .btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); } .section { padding: var(--space-3xl) 0; } .section-header { text-align: center; margin-bottom: var(--space-3xl); max-width: 600px; margin-left: auto; margin-right: auto; } .section-title { font-size: 2.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-md); letter-spacing: -0.025em; } .section-subtitle { font-size: 1.25rem; color: var(--text-secondary); line-height: 1.6; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: var(--space-xl); } .service-card { background: var(--bg-primary); border-radius: var(--radius-xl); padding: var(--space-xl); box-shadow: var(--shadow-md); transition: var(--transition-normal); border: 1px solid var(--gray-200); } .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); } .service-icon { width: 60px; height: 60px; background: var(--gradient-primary); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-lg); } .service-icon i { font-size: 1.5rem; color: var(--text-inverse); } .service-card h3 { font-size: 1.5rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-md); } .service-card p { color: var(--text-secondary); line-height: 1.6; margin-bottom: var(--space-lg); } .service-features { list-style: none; margin-bottom: var(--space-lg); } .service-features li { display: flex; align-items: center; gap: var(--space-sm); color: var(--text-secondary); margin-bottom: var(--space-sm); } .service-features li i { color: var(--secondary-color); font-size: 0.875rem; } @media (max-width: 1024px) { .hero-content { grid-template-columns: 1fr; text-align: center; gap: var(--space-2xl); } .stats-grid { grid-template-columns: repeat(4, 1fr); } } @media (max-width: 768px) { .container { padding: 0 var(--space-md); } .nav-menu { display: none; } .hamburger { display: flex; } .hero-corporate { padding: 100px 0 60px; } .profile-title { font-size: 2.5rem; } .profile-subtitle { font-size: 1.25rem; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .section-title { font-size: 2rem; } .services-grid { grid-template-columns: 1fr; } .hero-cta { flex-direction: column; align-items: center; } .btn { width: 100%; justify-content: center; max-width: 300px; } } @media (max-width: 480px) { .brand-content h1 { font-size: 1.25rem; } .brand-content .tagline { font-size: 0.75rem; } .profile-title { font-size: 2rem; } .profile-subtitle { font-size: 1.125rem; } .section-title { font-size: 1.75rem; } .stat-number { font-size: 2rem; } } .text-center { text-align: center; } .text-left { text-align: left; } .text-right { text-align: right; } .mt-sm { margin-top: var(--space-sm); } .mt-md { margin-top: var(--space-md); } .mt-lg { margin-top: var(--space-lg); } .mt-xl { margin-top: var(--space-xl); } .mb-sm { margin-bottom: var(--space-sm); } .mb-md { margin-bottom: var(--space-md); } .mb-lg { margin-bottom: var(--space-lg); } .mb-xl { margin-bottom: var(--space-xl); } .hidden { display: none; } .block { display: block; } .flex { display: flex; } .grid { display: grid; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } *:focus { outline: 2px solid var(--accent-color); outline-offset: 2px; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .animate-fade-in { animation: fadeInUp 0.6s ease-out; } .ranicultura-hero { position: relative; background: linear-gradient(135deg, #1A4B5C 0%, #2A7A5A 50%, #0F2B3C 100%); min-height: 100vh; display: flex; align-items: center; overflow: hidden; } .hero-background-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; } .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26, 75, 92, 0.85) 0%, rgba(42, 122, 90, 0.75) 50%, rgba(15, 43, 60, 0.9) 100%); z-index: 2; } .hero-bg-animation { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; } .hero-content { position: relative; z-index: 4; } .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; color: white; font-size: 0.875rem; font-weight: 600; margin-bottom: 2rem; animation: slideUp 0.8s ease-out; } .hero-badge span:first-child { font-size: 1rem; } .hero-bg-animation { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; } .floating-particle { position: absolute; width: 4px; height: 4px; background: rgba(243, 156, 63, 0.6); border-radius: 50%; animation: float var(--duration) infinite ease-in-out; animation-delay: var(--delay); } .floating-particle:nth-child(1) { top: 20%; left: 10%; } .floating-particle:nth-child(2) { top: 60%; right: 15%; } .floating-particle:nth-child(3) { bottom: 30%; left: 20%; } .floating-particle:nth-child(4) { top: 40%; right: 30%; } @keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; } 25% { transform: translateY(-20px) rotate(90deg); opacity: 1; } 50% { transform: translateY(-40px) rotate(180deg); opacity: 0.8; } 75% { transform: translateY(-20px) rotate(270deg); opacity: 1; } } .hero-icon { text-align: center; margin-bottom: 2rem; animation: slideUp 0.8s ease-out; } .frog-icon { width: 80px; height: 80px; color: #F39C3F; filter: drop-shadow(0 4px 8px rgba(243, 156, 63, 0.3)); } .hero-title-animated { text-align: center; margin-bottom: 1.5rem; font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; line-height: 1.1; } .word { display: inline-block; color: white; animation: slideUp 0.8s ease-out; animation-delay: var(--delay); animation-fill-mode: both; } .gradient-text { background: linear-gradient(135deg, #F39C3F, #FFD700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-description-animated { text-align: center; font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto 3rem; line-height: 1.6; animation: slideUp 0.8s ease-out 0.4s both; } .hero-stats { display: flex; justify-content: center; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; } .stat-item { text-align: center; animation: slideUp 0.8s ease-out; animation-delay: var(--delay); animation-fill-mode: both; } .stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: #F39C3F; line-height: 1; margin-bottom: 0.5rem; } .stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); text-transform: uppercase; letter-spacing: 0.5px; } .hero-cta { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; animation: slideUp 0.8s ease-out; animation-delay: var(--delay); animation-fill-mode: both; } .btn-hero-primary { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; background: linear-gradient(135deg, #F39C3F, #E8841F); color: white; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(243, 156, 63, 0.3); } .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(243, 156, 63, 0.4); } .btn-hero-primary svg { width: 18px; height: 18px; transition: transform 0.3s ease; } .btn-hero-primary:hover svg { transform: translateX(3px); } .btn-hero-secondary { padding: 1rem 2rem; color: white; text-decoration: none; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 50px; font-weight: 600; transition: all 0.3s ease; backdrop-filter: blur(10px); } .btn-hero-secondary:hover { border-color: #F39C3F; background: rgba(243, 156, 63, 0.1); transform: translateY(-2px); } .hero-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255, 255, 255, 0.6); font-size: 0.75rem; animation: bounce 2s infinite; } .scroll-mouse { width: 24px; height: 40px; border: 2px solid rgba(255, 255, 255, 0.4); border-radius: 12px; position: relative; } .scroll-wheel { width: 4px; height: 8px; background: rgba(255, 255, 255, 0.6); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s infinite; } @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } } @keyframes scrollWheel { 0% { transform: translateX(-50%) translateY(0); opacity: 1; } 50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; } 100% { transform: translateX(-50%) translateY(0); opacity: 1; } } .section-badge { display: inline-block; padding: 0.5rem 1rem; background: linear-gradient(135deg, #F39C3F, #E8841F); color: white; border-radius: 20px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; } .section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: #1A4B5C; margin-bottom: 1rem; line-height: 1.2; } .section-description { font-size: 1.125rem; color: #666; max-width: 600px; margin: 0 auto; line-height: 1.6; } .modern-timeline { position: relative; max-width: 1000px; margin: 4rem auto 0; } .timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, #E5E7EB, #D1D5DB, #E5E7EB); transform: translateX(-50%); border-radius: 2px; } .timeline-progress { position: absolute; top: 0; left: 0; width: 100%; height: 30%; background: linear-gradient(to bottom, #F39C3F, #2A7A5A); border-radius: 2px; animation: progressFill 2s ease-out 1s both; } @keyframes progressFill { from { height: 0%; } to { height: 30%; } } .timeline-item-modern { position: relative; margin-bottom: 4rem; opacity: 0; animation: timelineSlideIn 0.8s ease-out both; animation-delay: calc(0.2s * attr(data-step)); } .timeline-item-modern:nth-child(odd) .timeline-content-modern { margin-right: calc(50% + 3rem); text-align: right; } .timeline-item-modern:nth-child(even) .timeline-content-modern { margin-left: calc(50% + 3rem); text-align: left; } .timeline-marker-modern { position: absolute; left: 50%; top: 2rem; transform: translateX(-50%); width: 60px; height: 60px; background: linear-gradient(135deg, #F39C3F, #E8841F); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(243, 156, 63, 0.3); z-index: 2; } .marker-inner { width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; } .marker-inner svg { width: 20px; height: 20px; color: #F39C3F; } .timeline-content-modern { background: white; border-radius: 15px; padding: 2rem; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); border: 1px solid #E5E7EB; transition: all 0.3s ease; } .timeline-content-modern:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); } .timeline-image { margin-bottom: 1.5rem; border-radius: 10px; overflow: hidden; position: relative; } .timeline-img { width: 100%; height: 200px; object-fit: cover; object-position: center; transition: transform 0.3s ease; } .timeline-content-modern:hover .timeline-img { transform: scale(1.05); } .content-header { margin-bottom: 1.5rem; } .phase-number { display: inline-block; padding: 0.25rem 0.75rem; background: linear-gradient(135deg, #2A7A5A, #1A4B5C); color: white; border-radius: 15px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; } .content-header h3 { font-size: 1.5rem; font-weight: 700; color: #1A4B5C; margin-bottom: 0.5rem; } .timeline-period { color: #F39C3F; font-weight: 600; font-size: 0.875rem; } .phase-description { color: #666; line-height: 1.6; margin-bottom: 1.5rem; } .achievements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; } .achievement-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: #F8FAFC; border-radius: 10px; transition: all 0.3s ease; } .achievement-item:hover { background: #F1F5F9; transform: translateX(5px); } .achievement-icon { font-size: 1.25rem; } .metrics-showcase { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; } .metric-card { text-align: center; padding: 1rem; background: linear-gradient(135deg, #F8FAFC, #EEF2FF); border-radius: 10px; border: 1px solid #E5E7EB; } .metric-value { display: block; font-size: 2rem; font-weight: 700; color: #F39C3F; margin-bottom: 0.25rem; } .metric-label { font-size: 0.75rem; color: #666; text-transform: uppercase; letter-spacing: 0.5px; } .metric-progress { margin-top: 0.5rem; height: 4px; background: #E5E7EB; border-radius: 2px; overflow: hidden; } .progress-bar { height: 100%; background: linear-gradient(90deg, #F39C3F, #2A7A5A); border-radius: 2px; transition: width 1s ease-in-out 0.5s; } .tech-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1rem; } .tech-item { text-align: center; padding: 1rem; background: linear-gradient(135deg, #1A4B5C, #2A7A5A); color: white; border-radius: 10px; } .tech-stat { display: block; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; } .tech-desc { font-size: 0.75rem; opacity: 0.9; } .industrial-stats { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; } .stat-circle { position: relative; width: 120px; height: 120px; } .circle-progress { position: relative; width: 100%; height: 100%; } .circle-progress svg { width: 100%; height: 100%; transform: rotate(-90deg); } .circle-progress circle { fill: none; stroke-width: 8; } .circle-progress circle:first-child { stroke: #E5E7EB; } .progress-ring { stroke: #F39C3F; stroke-dasharray: 283; stroke-dashoffset: 283; animation: progressRing 2s ease-in-out 1s both; } @keyframes progressRing { to { stroke-dashoffset: 0; } } .circle-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; } .circle-number { display: block; font-size: 1.5rem; font-weight: 700; color: #F39C3F; } .circle-label { font-size: 0.75rem; color: #666; } .industrial-details { flex: 1; min-width: 200px; } .detail-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; } .detail-icon { font-size: 1.25rem; } .detail-text { color: #666; } @keyframes timelineSlideIn { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } } .modern-applications { background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 50%, #F1F5F9 100%); padding: 5rem 0; } .applications-grid-modern { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; } .application-card-modern { position: relative; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); transition: all 0.4s ease; cursor: pointer; } .application-card-modern:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); } .card-image { position: relative; height: 200px; overflow: hidden; } .app-card-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; } .application-card-modern:hover .app-card-img { transform: scale(1.1); } .featured-card { grid-column: span 2; } .card-background { position: absolute; top: 0; left: 0; right: 0; height: 100%; opacity: 0.05; transition: opacity 0.3s ease; } .application-card-modern:hover .card-background { opacity: 0.1; } .card-pattern { width: 100%; height: 100%; background: linear-gradient(45deg, #F39C3F 25%, transparent 25%), linear-gradient(-45deg, #F39C3F 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #F39C3F 75%), linear-gradient(-45deg, transparent 75%, #F39C3F 75%); background-size: 20px 20px; background-position: 0 0, 0 10px, 10px -10px, -10px 0px; } .card-header-modern { padding: 2rem 2rem 1rem; display: flex; align-items: center; gap: 1rem; } .app-icon-modern { width: 60px; height: 60px; background: linear-gradient(135deg, #F39C3F, #E8841F); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; } .app-icon-modern svg { width: 28px; height: 28px; } .app-title-section h3 { font-size: 1.5rem; font-weight: 700; color: #1A4B5C; margin-bottom: 0.5rem; } .market-badge { padding: 0.25rem 0.75rem; border-radius: 15px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; } .market-badge:not(.growth):not(.emerging):not(.impact) { background: linear-gradient(135deg, #2A7A5A, #1A4B5C); color: white; } .growth { background: linear-gradient(135deg, #10B981, #047857); color: white; } .emerging { background: linear-gradient(135deg, #8B5CF6, #7C3AED); color: white; } .impact { background: linear-gradient(135deg, #06B6D4, #0891B2); color: white; } .card-content-modern { padding: 0 2rem 1rem; } .app-description { color: #666; line-height: 1.6; margin-bottom: 1.5rem; } .stats-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; } .stat-item-modern { flex: 1; text-align: center; padding: 1rem; background: #F8FAFC; border-radius: 10px; } .stat-item-modern .stat-number { display: block; font-size: 1.5rem; font-weight: 700; color: #F39C3F; margin-bottom: 0.25rem; } .stat-item-modern .stat-label { font-size: 0.75rem; color: #666; } .features-list-modern { display: flex; flex-direction: column; gap: 0.75rem; } .feature-item { display: flex; align-items: center; gap: 0.75rem; color: #666; } .feature-item svg { width: 16px; height: 16px; color: #10B981; flex-shrink: 0; } .nutrition-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1rem; margin-bottom: 1rem; } .nutrition-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1rem; background: #F8FAFC; border-radius: 10px; text-align: center; } .nutrition-icon { font-size: 1.5rem; } .nutrition-value { font-weight: 700; color: #1A4B5C; } .nutrition-label { font-size: 0.75rem; color: #666; } .biotech-applications { display: flex; flex-direction: column; gap: 0.75rem; } .biotech-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: #F8FAFC; border-radius: 8px; transition: all 0.3s ease; } .biotech-item:hover { background: #EEF2FF; transform: translateX(5px); } .biotech-icon { font-size: 1.25rem; } .conservation-metrics { display: flex; flex-direction: column; gap: 0.75rem; } .conservation-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: linear-gradient(135deg, #F0FDF4, #ECFDF5); border-radius: 8px; border-left: 4px solid #10B981; } .conservation-icon { font-size: 1.25rem; } .card-action { padding: 1rem 2rem 2rem; } .explore-btn { display: flex; align-items: center; gap: 0.5rem; width: 100%; padding: 0.75rem 1.5rem; background: linear-gradient(135deg, #1A4B5C, #2A7A5A); color: white; border: none; border-radius: 10px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .explore-btn:hover { background: linear-gradient(135deg, #2A7A5A, #F39C3F); transform: translateY(-2px); } .explore-btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; } .explore-btn:hover svg { transform: translateX(3px); } @media (max-width: 768px) { .timeline-item-modern:nth-child(odd) .timeline-content-modern, .timeline-item-modern:nth-child(even) .timeline-content-modern { margin-left: 4rem; margin-right: 1rem; text-align: left; } .timeline-marker-modern { left: 2rem; transform: none; } .timeline-line { left: 2rem; transform: none; } .hero-stats { gap: 1.5rem; } .hero-cta { flex-direction: column; align-items: center; } .applications-grid-modern { grid-template-columns: 1fr; } .featured-card { grid-column: span 1; } .industrial-stats { flex-direction: column; text-align: center; } } .brand-content { display: flex; align-items: center; gap: 0.75rem; } .logo-img { height: 40px; width: auto; object-fit: contain; } .brand-text { display: flex; flex-direction: column; gap: 0.25rem; } .brand-text .logo { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); margin: 0; line-height: 1; } .brand-text .tagline { font-size: 0.75rem; color: var(--text-secondary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; } @media (max-width: 768px) { .brand-text .tagline { display: none; } }