* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0083CA;
    --secondary-color: #006ba8;
    --accent-color: #0083CA;
    --text-dark: #ffffff;
    --text-light: #9ca3af;
    --bg-dark: #161616;
    --bg-card: #1c1c1c;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Michroma', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-dark);
    background-image:
        linear-gradient(rgba(0, 131, 202, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 131, 202, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    background-attachment: fixed;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(22, 22, 22, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 20px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Wave Animations */
.wave {
    animation: wave-flow 20s ease-in-out infinite;
    opacity: 0.6;
}

.wave1 {
    animation-duration: 25s;
    animation-delay: 0s;
}

.wave2 {
    animation-duration: 30s;
    animation-delay: -5s;
}

.wave3 {
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes wave-flow {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-40px) translateY(2px);
        opacity: 0.8;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-grid {
    display: none;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 1;
    max-width: 800px;
}

.hero-slogan {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--white);
    position: relative;
    font-weight: 700;
}

/* About Section */
.about {
    background: transparent;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-text p.mission {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Industry Section */
.industry {
    background: transparent;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.industry-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.industry-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Product Section */
.product {
    background: transparent;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.product-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.product-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 131, 202, 0.15) 0%, rgba(0, 131, 202, 0.05) 100%);
    border: 2px solid var(--primary-color);
    padding: 3rem 2rem;
    text-align: center;
}

.product-item h3 {
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.product-featured h3 {
    font-size: 2.5rem !important;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-featured p {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 0;
}

@media (max-width: 968px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    background: transparent;
}

.contact-slogan {
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.contact-email-featured {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 131, 202, 0.15) 0%, rgba(0, 131, 202, 0.05) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.contact-email-featured h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.featured-email {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    word-break: break-word;
}

.featured-email:hover {
    color: var(--white);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .featured-email {
        font-size: 1.5rem;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 600;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.info-item h4 {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--white);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-card);
    color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Success Message */
.form-success-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    text-align: center;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    min-width: 350px;
}

.form-success-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    animation: successPop 0.6s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success-message h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.form-success-message p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

/* Responsive Design */
@media (max-width: 968px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(22, 22, 22, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid var(--border);
    }

    .nav-links.active {
        left: 0;
    }

    .logo img {
        height: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-slogan {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    section {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .culture-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-featured h3 {
        font-size: 2.5rem !important;
    }

    .product-featured p {
        font-size: 1.1rem;
    }

    .contact-email-featured {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .featured-email {
        font-size: 1.5rem;
    }

    .contact-slogan {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-slogan {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-featured h3 {
        font-size: 2rem !important;
    }

    .product-featured p {
        font-size: 1rem;
    }

    .featured-email {
        font-size: 1.3rem;
    }

    .value-item,
    .industry-card,
    .product-item {
        padding: 1.5rem;
    }
}
