:root {
--primary-color: #8b5cf6;
--primary-hover: #7c3aed;
--primary-light: #a78bfa;
--primary-dark: #6d28d9;
--secondary-color: #06b6d4;
--secondary-hover: #0891b2;
--secondary-light: #22d3ee;
--accent-color: #10b981;
--accent-hover: #059669;
--accent-light: #34d399;
--warning-color: #f59e0b;
--warning-hover: #d97706;
--error-color: #ef4444;
--error-hover: #dc2626;
--success-color: #10b981;
--info-color: #3b82f6;
--text-primary: #ffffff;
--text-secondary: #e2e8f0;
--text-muted: #94a3b8;
--text-disabled: #64748b;
--bg-primary: #0a0a0a;
--bg-secondary: #1a1a1a;
--bg-tertiary: #2a2a2a;
--bg-card: #1e1e1e;
--bg-hover: #2a2a2a;
--border-color: #374151;
--border-light: #4b5563;
--border-dark: #1f2937;
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
--shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
--gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
--gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
--gradient-accent: linear-gradient(135deg, #10b981 0%, #34d399 100%);
--gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
--gradient-card: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
--gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%);
--gradient-text: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
--glow-primary: 0 0 20px rgba(139, 92, 246, 0.4);
--glow-secondary: 0 0 20px rgba(6, 182, 212, 0.4);
--glow-accent: 0 0 20px rgba(16, 185, 129, 0.4);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
-webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
html {
scroll-padding-top: 70px;
}
.back-to-top {
bottom: 20px;
right: 20px;
width: 44px;
height: 44px;
}
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
body {
font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-primary);
background-color: var(--bg-primary);
font-size: 16px;
font-weight: 400;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
opacity: 0;
animation: fadeIn 0.8s ease-out forwards;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--bg-primary);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading.hidden {
opacity: 0;
visibility: hidden;
}
.loading-spinner {
text-align: center;
}
.spinner {
width: 50px;
height: 50px;
border: 4px solid var(--border-color);
border-top: 4px solid var(--primary-color);
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 1rem;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.loading-spinner p {
color: var(--text-primary);
font-size: 1.2rem;
font-weight: 600;
margin: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(20px);
z-index: 1000;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
border-bottom: 1px solid var(--border-color);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
}
.nav-logo h2 {
color: white;
font-size: 1.8rem;
font-weight: 700;
background: var(--gradient-text);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.3));
transition: all 0.3s ease;
}
.nav-logo h2:hover {
filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.5));
transform: scale(1.02);
}
.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-link {
text-decoration: none;
color: var(--text-secondary);
font-weight: 500;
transition: all 0.3s ease;
position: relative;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
}
.nav-link:hover {
color: white;
background: rgba(255, 255, 255, 0.1);
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: var(--secondary-color);
transition: all 0.3s ease;
transform: translateX(-50%);
border-radius: 1px;
}
.nav-link:hover::after {
width: 80%;
}
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}
.bar {
width: 25px;
height: 3px;
background: white;
margin: 3px 0;
transition: 0.3s;
border-radius: 2px;
}
.hero {
background: var(--gradient-hero);
color: white;
padding: 120px 0 80px;
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
opacity: 0.3;
}
.hero-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.hero-title {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1rem;
line-height: 1.1;
text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
letter-spacing: -0.02em;
}
.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.95;
line-height: 1.6;
font-weight: 400;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.hero-image {
display: flex;
justify-content: center;
align-items: center;
}
.hero-graphic {
width: 300px;
height: 300px;
background: rgba(255, 255, 255, 0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(20px);
border: 2px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
position: relative;
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.hero-graphic i {
font-size: 8rem;
color: rgba(255, 255, 255, 0.8);
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
transition: all 0.3s ease;
}
.hero-graphic:hover i {
transform: scale(1.1);
filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 14px 32px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: none;
cursor: pointer;
font-size: 1rem;
position: relative;
overflow: hidden;
box-shadow: var(--shadow-sm);
min-height: 48px;
min-width: 120px;
}
.btn:focus {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}
.btn:disabled {
opacity: 0.6;
cursor: not-allowed;
transform: none !important;
}
.btn-primary {
background: var(--gradient-primary);
color: white;
border: 1px solid transparent;
position: relative;
overflow: hidden;
}
.btn-primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--glow-primary);
filter: brightness(1.1);
}
.btn-primary:hover::before {
left: 100%;
}
.btn-primary:active {
transform: translateY(0);
box-shadow: var(--shadow-sm);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.1);
color: white;
border: 2px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.btn-download {
background: var(--gradient-accent);
color: white;
width: 100%;
text-align: center;
margin-top: 1rem;
border: 1px solid transparent;
}
.btn-download:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
filter: brightness(1.1);
}
.products {
padding: 80px 0;
background: var(--gradient-dark);
position: relative;
}
.products::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.section-title {
text-align: center;
font-size: 2.5rem;
font-weight: 800;
color: var(--text-primary);
margin-bottom: 1rem;
letter-spacing: -0.02em;
position: relative;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: var(--gradient-secondary);
border-radius: 2px;
}
.section-subtitle {
text-align: center;
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 3rem;
font-weight: 400;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.product-card {
background: var(--gradient-card);
padding: 2.5rem;
border-radius: 20px;
box-shadow: var(--shadow-md);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
text-align: center;
border: 1px solid var(--border-color);
position: relative;
overflow: hidden;
backdrop-filter: blur(10px);
}
.product-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-xl);
border-color: var(--primary-color);
}
.product-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--gradient-secondary);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.product-card:hover::before {
transform: scaleX(1);
}
.product-icon {
width: 80px;
height: 80px;
background: var(--gradient-primary);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: 1px solid var(--glass-border);
}
.product-card:hover .product-icon {
transform: translateY(-5px) scale(1.05);
box-shadow: var(--shadow-lg);
}
.product-card:hover .product-icon i {
transform: scale(1.1);
}
.product-icon::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
border-radius: 20px;
}
.product-icon i {
font-size: 2rem;
color: white;
position: relative;
z-index: 1;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.product-card h3 {
font-size: 1.5rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 1rem;
letter-spacing: -0.01em;
}
.product-card p {
color: var(--text-secondary);
margin-bottom: 1.5rem;
line-height: 1.7;
font-size: 1rem;
}
.product-features {
list-style: none;
text-align: left;
}
.product-features li {
padding: 0.6rem 0;
color: var(--text-primary);
position: relative;
padding-left: 1.8rem;
font-size: 0.95rem;
transition: color 0.3s ease;
}
.product-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent-color);
font-weight: bold;
font-size: 1.1rem;
top: 0.5rem;
}
.features {
padding: 80px 0;
background: var(--bg-primary);
position: relative;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.feature-item {
text-align: center;
padding: 2rem;
background: var(--gradient-card);
border-radius: 15px;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.feature-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-color);
}
.feature-icon {
width: 60px;
height: 60px;
background: var(--gradient-primary);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
}
.feature-icon i {
font-size: 1.5rem;
color: white;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.feature-item h3 {
font-size: 1.3rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 1rem;
}
.feature-item p {
color: var(--text-secondary);
line-height: 1.6;
font-size: 0.95rem;
}
.download {
padding: 80px 0;
background: var(--bg-secondary);
position: relative;
}
.download-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.download-grid.mobile-only {
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
max-width: 800px;
margin: 3rem auto 0;
justify-content: center;
}
.download-card {
background: var(--gradient-card);
padding: 2.5rem;
border-radius: 20px;
text-align: center;
border: 2px solid var(--border-color);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.download-card:hover {
border-color: var(--primary-color);
transform: translateY(-8px);
box-shadow: var(--shadow-xl);
background: var(--bg-primary);
}
.download-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--gradient-accent);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.download-card:hover::before {
transform: scaleX(1);
}
.download-icon {
width: 80px;
height: 80px;
background: var(--gradient-accent);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.download-icon::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
border-radius: 20px;
}
.download-icon i {
font-size: 2.5rem;
color: white;
position: relative;
z-index: 1;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.download-card h3 {
font-size: 1.3rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 0.5rem;
letter-spacing: -0.01em;
}
.download-card p {
color: var(--text-secondary);
margin-bottom: 1rem;
font-size: 0.95rem;
}
.download-info {
display: flex;
justify-content: space-between;
margin-bottom: 1.5rem;
font-size: 0.9rem;
color: var(--text-muted);
background: var(--bg-tertiary);
padding: 0.8rem 1rem;
border-radius: 10px;
border: 1px solid var(--border-color);
backdrop-filter: blur(10px);
}
.download-note {
text-align: center;
margin-top: 3rem;
padding: 1.5rem;
background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
border-radius: 15px;
color: var(--accent-color);
border: 1px solid rgba(16, 185, 129, 0.3);
font-weight: 500;
backdrop-filter: blur(10px);
}
.download-note i {
margin-right: 0.5rem;
}
.download-badges {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-top: 1rem;
flex-wrap: wrap;
}
.badge {
background: var(--primary-color);
color: white;
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
}
.badge:nth-child(2) {
background: var(--accent-color);
}
.badge:hover {
transform: translateY(-1px);
box-shadow: var(--shadow-md);
}
.about {
padding: 80px 0;
background: var(--gradient-dark);
position: relative;
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.about-description {
font-size: 1.1rem;
color: var(--text-secondary);
margin-bottom: 2rem;
line-height: 1.8;
font-weight: 400;
}
.about-stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.stat-item {
text-align: center;
padding: 2rem;
background: var(--gradient-card);
border-radius: 15px;
box-shadow: var(--shadow-md);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.stat-item h3 {
font-size: 2.5rem;
font-weight: 800;
background: var(--gradient-text);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
letter-spacing: -0.02em;
filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.3));
}
.stat-item:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-color);
}
.stat-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--gradient-secondary);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.stat-item:hover::before {
transform: scaleX(1);
}
.stat-item p {
color: var(--text-secondary);
font-weight: 600;
font-size: 1rem;
}
.about-image {
display: flex;
justify-content: center;
align-items: center;
}
.about-graphic {
width: 300px;
height: 300px;
background: var(--gradient-accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-xl);
position: relative;
overflow: hidden;
animation: float 6s ease-in-out infinite;
}
.about-graphic::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
border-radius: 50%;
}
.about-graphic i {
font-size: 8rem;
color: white;
position: relative;
z-index: 1;
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.contact {
padding: 80px 0;
background: var(--bg-primary);
position: relative;
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
margin-top: 3rem;
}
.contact-content-simple {
max-width: 800px;
margin: 3rem auto 0;
display: flex;
justify-content: center;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 2rem;
}
.contact-content-simple .contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
width: 100%;
}
.contact-item {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 2rem;
background: var(--gradient-card);
border-radius: 15px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid var(--border-color);
box-shadow: var(--shadow-sm);
position: relative;
overflow: hidden;
}
.contact-item:hover {
transform: translateX(8px) translateY(-2px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-color);
}
.contact-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: var(--gradient-secondary);
transform: scaleY(0);
transition: transform 0.3s ease;
}
.contact-item:hover::before {
transform: scaleY(1);
}
.contact-item i {
font-size: 1.5rem;
color: var(--primary-color);
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(79, 70, 229, 0.1);
border-radius: 10px;
flex-shrink: 0;
}
.contact-item h4 {
color: var(--text-primary);
margin-bottom: 0.5rem;
font-weight: 700;
font-size: 1.1rem;
}
.contact-item p {
color: var(--text-secondary);
font-size: 1rem;
font-weight: 500;
}
.contact-form {
background: #f8f9fa;
padding: 2rem;
border-radius: 15px;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 1rem;
border: 2px solid #e9ecef;
border-radius: 10px;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #3498db;
}
.form-group textarea {
resize: vertical;
min-height: 120px;
}
.footer {
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
color: white;
padding: 4rem 0 2rem;
position: relative;
overflow: hidden;
border-top: 1px solid var(--border-color);
}
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
opacity: 0.3;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
margin-bottom: 1.5rem;
color: white;
font-weight: 700;
font-size: 1.2rem;
letter-spacing: -0.01em;
}
.footer-section p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 1.5rem;
font-size: 1rem;
line-height: 1.6;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section ul li a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: all 0.3s ease;
padding: 0.3rem 0;
display: block;
border-radius: 4px;
}
.footer-section ul li a:hover {
color: white;
background: rgba(255, 255, 255, 0.1);
padding-left: 0.5rem;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
width: 44px;
height: 44px;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
}
.social-links a:hover {
background: var(--primary-color);
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-color);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.6);
font-size: 0.9rem;
font-weight: 500;
}
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--gradient-primary);
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
box-shadow: var(--shadow-lg);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
opacity: 0;
visibility: hidden;
transform: translateY(20px);
z-index: 1000;
border: 1px solid var(--glass-border);
backdrop-filter: blur(10px);
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.back-to-top:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-xl);
filter: brightness(1.1);
}
.back-to-top:active {
transform: translateY(-1px);
}
.back-to-top:focus {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}
.scroll-progress {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 3px;
background: var(--gradient-primary);
z-index: 1001;
transition: width 0.1s ease;
box-shadow: var(--glow-primary);
}
@media (max-width: 768px) {
.hamburger {
display: flex;
}
.nav-menu {
position: fixed;
left: -100%;
top: 70px;
flex-direction: column;
background-color: var(--bg-secondary);
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
padding: 2rem 0;
border-top: 1px solid var(--border-color);
}
.nav-menu.active {
left: 0;
}
.nav-menu li {
margin: 1rem 0;
}
.hero-container {
grid-template-columns: 1fr;
text-align: center;
gap: 2rem;
}
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.hero-buttons {
justify-content: center;
}
.hero-graphic {
width: 200px;
height: 200px;
}
.hero-graphic i {
font-size: 5rem;
}
.products-grid {
grid-template-columns: 1fr;
}
.download-grid {
grid-template-columns: 1fr;
}
.download-grid.mobile-only {
grid-template-columns: 1fr;
max-width: 400px;
margin: 3rem auto 0;
}
.about-content {
grid-template-columns: 1fr;
text-align: center;
}
.about-stats {
grid-template-columns: 1fr;
}
.contact-content {
grid-template-columns: 1fr;
}
.contact-content-simple .contact-info {
grid-template-columns: 1fr;
max-width: 400px;
margin: 0 auto;
}
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
}
@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.hero-title {
font-size: 2rem;
}
.section-title {
font-size: 2rem;
}
.product-card,
.download-card {
padding: 1.5rem;
}
.btn {
padding: 12px 24px;
font-size: 0.9rem;
min-height: 44px;
min-width: 100px;
}
.nav-link {
padding: 0.8rem 1rem;
min-height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.contact-item {
padding: 1.5rem;
gap: 1rem;
}
.contact-item i {
width: 36px;
height: 36px;
font-size: 1.2rem;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
.product-card,
.download-card {
animation: fadeInUp 0.6s ease-out;
}
.contact-item {
animation: slideInLeft 0.6s ease-out;
}
.stat-item {
animation: slideInRight 0.6s ease-out;
}
.btn:hover {
animation: pulse 0.6s ease-in-out;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
background: var(--primary-color);
border-radius: 4px;
transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
background: var(--primary-hover);
}
