

.navbar {
    background: #1a2b3c;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}
.logo span {
    color: #e9b741;
}

.hero {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero h1 span {
    color: #e9b741;
}
.hero p {
    color: white;

    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e9b741;
    display: block;
}
.stat-label {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}
.idiusdhfihsdf{
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
}
.hero-image {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.product-categories-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.cat-pill {
    background: rgba(233, 183, 65, 0.2);
    border: 1px solid rgba(233, 183, 65, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.cat-pill i {
    color: #e9b741;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #e9b741;
    margin-top: 0.5rem;
}

/* Produktų tinklelis su kortelėmis */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}



.product-desc {
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1e3f5c;
}
.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}
.feature-list li {
    padding: 0.4rem 0;
    border-bottom: 1px dashed #e5ecf3;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.95rem;
}
.feature-list i {
    color: #e9b741;
    width: 20px;
}
.product-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}
.tag {
    background: #edf3f8;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2b3c;
}
.btn {
    display: inline-block;
    background: #1a2b3c;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}
.btn:hover {
    background: #e9b741;
    color: #1a2b3c;
}
.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* Gamintojų blokas */



.tech-showcase {
    background: #1e2f3f;
    color: white;
    padding: 3rem;
    border-radius: 30px;
    margin: 3rem 0;
}

.tip-box {
    background: #eef5f9;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid #e9b741;
}
.tip-box i {
    color: #e9b741;
    font-size: 1.5rem;
}

.anchor-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0 3rem;
    justify-content: center;
}

.anchor-link {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #d0ddee;
    text-decoration: none;
    color: #1a2b3c;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.15s;
    margin: 0;
}

.footer {
    background: #0e1a24;
    color: #a0bedb;
    padding: 3rem 0;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr; }
    .contact-block { flex-direction: column; align-items: flex-start; }
}










