


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


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #1a1818;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF8C42;
}

ul {
    list-style: none;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #333;
    color: #fff;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    padding: 9px 19px;
    border-radius: 20px;
    border: 1px solid #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline_product {
    display: inline-block;
    background-color: transparent;
    color: black;
    padding: 9px 19px;
    border-radius: 20px;
    border: 1px solid black;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background-color: #000;
    color: #fff;
}


/* Hero Section */
.hero {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    position: relative;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-price {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-image {
    margin-top: 30px;
    max-width: 100%;
}

/* Features Section */
.features {
    padding: 40px 0;
}

.feature-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.feature-item img {
    width: 100%;
    height: auto;
}

.feature-text {
    padding: 20px;
    text-align: center;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    color: #91959d;
    margin-bottom: 10px;
}

.feature-link {
    color: #000;
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
}

/* Products Nav Section */
.products-nav {
    padding: 30px 0;
    text-align: center;
}

.products-nav h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.tab-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 8px 15px;
    background: none;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: #000;
    color: #fff;
}

/* Products Section */
.products {
    padding: 20px 0 50px;
}

.tab-content {
    display: block;
}

.tab-content.active {
    display: block;
}

.product-list-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-list-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    padding: 20px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-list-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-features span {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
}

.product-list-card:hover .product-features span {
    background: #e8e8e8;
}

.product-price {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.btn-outline_product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 40px;
    padding: 0 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    text-align: center;
    line-height: 1;
}

.btn-outline_product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF8C42;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-outline_product:hover {
    color: #fff;
    border-color: #FF8C42;
}

.btn-outline_product:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Products Grid Layout Optimization */
.products .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

/* Comparison Section */
.comparison {
    background: #f8f8f8;
    padding: 60px 0;
}

.comparison h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.comparison-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.comparison-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.comparison-item:hover img {
    transform: scale(1.05);
}

.comparison-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.comparison-item .price {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.comparison-item .specs {
    margin-top: 20px;
    text-align: left;
}

.comparison-item .specs p {
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

/* Ecosystem Section */
.ecosystem {
    padding: 40px 0;
    text-align: center;
}

.ecosystem .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.ecosystem-item {
    flex: 1 1 100%;
    max-width: 400px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}



.ecosystem-item h3 {
    font-size: 18px;
}
.ecosystem-item img {
    width: 80px;
    height: 80px;
    display: inline;
}
/* Media Queries for Responsive Design */
@media (min-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .features .container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .feature-item {
        flex: 1 1 calc(50% - 10px);
        margin-bottom: 0;
    }

    .comparison-item {
        flex: 1 1 calc(50% - 10px);
    }

    .ecosystem-item {
        flex: 1 1 calc(50% - 10px);
    }
    .ecosystem-item img {
        width: unset;
        height: unset;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .pc-site {
        display: block;
        margin-right: 15px;
    }

    .external-links {
        display: flex;
        gap: 15px;
    }

    .hero {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 60px 0;
    }

    .hero-content {
        flex: 1;
        padding-left: 50px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-image {
        flex: 2;
        margin-top: 0;
    }

    .feature-item {
        /*flex: 1 1 calc(33.333% - 14px);*/
    }

    .product-list-card {
        display: flex;
        text-align: left;
        padding: 30px;
    }

    .product-image {
        flex: 0 0 50%;
        margin-bottom: 0;
        padding: 0;
    }

    .product-info {
        flex: 0 0 50%;
        padding-left: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-features {
        justify-content: flex-start;
    }

    .product-buttons {
        justify-content: flex-start;
    }

    .comparison-item {
        flex: 1 1 calc(25% - 15px);
    }

    .footer-column {
        flex: 1 1 calc(25% - 22px);
    }
}

@media (max-width: 768px) {
    .products .container {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn-outline_product {
        width: auto;
        min-width: 100px;
        height: 36px;
        padding: 0 20px;
    }
}
