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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
}

.hero-content {
    flex: 1;
    text-align: center;
    z-index: 2;
    position: relative;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.logo-symbol {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.company-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.company-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.motto {
    font-size: 1.5rem;
    font-weight: 400;
    color: #475569;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.1) 0%, rgba(71, 85, 105, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 40%;
    animation-delay: 4s;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    margin: 40px 0;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-content > p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 60px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    color: white;
    border-radius: 24px;
    margin: 40px 0;
}

.contact-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-info {
    margin-top: 40px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 60px 0 40px 0;
    color: #64748b;
    font-size: 0.9rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    text-align: center;
}

.footer-column h5 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .motto {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-content h3,
    .contact-content h3 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about,
    .contact {
        padding: 60px 0;
        margin: 20px 0;
    }
    
    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 2rem;
    }
    
    .motto {
        font-size: 1.1rem;
    }
    
    .about-content h3,
    .contact-content h3 {
        font-size: 1.8rem;
    }
    
    .about-content > p,
    .contact-content > p {
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
} 