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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #f8f6f3;
}

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

/* Header */
.header {
    padding: 20px 0;
    background-color: #f8f6f3;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-svg {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-size: 24px;
    font-weight: 300;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.centered-content {
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

/* What We Do */
.what-we-do {
    background-color: #fff;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.what-item {
    text-align: center;
    padding: 40px 20px;
}

.what-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: #7a9cc6;
}

.what-item h3 {
    font-size: 20px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.what-item p {
    color: #666;
    line-height: 1.6;
}

/* Services */
.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.services-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.services-image {
    height: 250px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products */
.products {
    background-color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-item {
    background-color: #f8f6f3;
    border-radius: 6px;
    padding: 30px 25px;
    text-align: center;
}

.product-image {
    height: 180px;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-price {
    font-size: 18px;
    font-weight: 500;
    color: #7a9cc6;
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 18px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 12px;
}

.product-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.product-btn {
    background-color: #7a9cc6;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.product-btn:hover {
    background-color: #6a8bb6;
}

/* Why Choose */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
}

.why-item h3 {
    font-size: 18px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.why-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Licensing */
.licensing {
    background-color: #fff;
}

.licensing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.license-option {
    text-align: center;
    padding: 40px 30px;
    background-color: #f8f6f3;
    border-radius: 6px;
}

.license-option h3 {
    font-size: 20px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.license-option p {
    color: #666;
    line-height: 1.6;
}

/* Platforms */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.platform-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background-color: #7a9cc6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
}

.platform-item p {
    color: #666;
    font-size: 14px;
}

/* Contact */
.contact {
    background-color: #fff;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #f8f6f3;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
}

.footer-right {
    flex: 1;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 500;
    color: #f8f6f3;
    margin-bottom: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-svg-small {
    width: 40px;
    height: 40px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 300;
    color: #f8f6f3;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    max-width: 400px;
}

.footer-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #7a9cc6;
}

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

.footer-bottom p {
    color: #888;
    font-size: 12px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #f8f6f3;
    margin: 5% auto;
    padding: 40px;
    border-radius: 6px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #666;
    float: right;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close:hover {
    color: #2a2a2a;
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #2a2a2a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2a2a2a;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    color: #2a2a2a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7a9cc6;
}

.form-group button,
form button[type="submit"] {
    background-color: #7a9cc6;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-group button:hover,
form button[type="submit"]:hover {
    background-color: #6a8bb6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }
}