﻿:root {
    --rimos-dark: #0b1220;
    --rimos-primary: #ff6b35;
    --rimos-primary-dark: #111f3f;
    --rimos-primary-light: #f3f3f3;
    --rimos-primary-soft: rgba(255,107,53,0.15);
    --rimos-accent: #1d4ed8;
    --rimos-muted: #6b7280;
    --rimos-border: #e5e7eb;
    --rimos-bg-soft: #f3f4f6;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background-color: #ffffff;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

/* Top bar */
.topbar {
    background: #020617;
    color: #e5e7eb;
    font-size: 0.85rem;
    padding: 0.4rem 0;
}

    .topbar a {
        color: #e5e7eb;
    }

        .topbar a:hover {
            color: #ffffff;
        }

/* Navbar */
.navbar-rimos {
    background: #020617;
}

.navbar-brand span.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: radial-gradient(circle at 20% 0, #f97316, #ef4444);
    color: #ffffff;
    margin-right: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
}

.navbar-brand span.logo-text {
    font-weight: 600;
    letter-spacing: .15em;
    font-size: 0.82rem;
    text-transform: uppercase;
    color: #e5e7eb;
}

.navbar-nav .nav-link {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e5e7eb;
    padding: 0.6rem 0.9rem !important;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #f97316;
    }

.btn-outline-light-rimos {
    border-radius: 999px;
    border-color: rgba(255,255,255,0.4);
    color: #e5e7eb;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.55rem 1.5rem;
}

    .btn-outline-light-rimos:hover {
        border-color: var(--rimos-primary);
        background-color: var(--rimos-primary);
        color: #ffffff;
    }

/* Dropdown (mega-style) */
.dropdown-menu-mega {
    min-width: 420px;
}

    .dropdown-menu-mega h6 {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: #6b7280;
    }

    .dropdown-menu-mega .dropdown-item {
        font-size: 0.86rem;
        padding: 0.25rem 0;
        white-space: normal;
    }

/* Hero */
.hero-section {
    padding: 4.5rem 0 4rem;
    background: radial-gradient(circle at 0 0, rgba(37,99,235,0.12), transparent 55%), radial-gradient(circle at 100% 0, rgba(248,113,113,0.14), transparent 55%), #0f172a;
    color: #e5e7eb;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(249,250,251,0.22);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #cbd5f5;
    margin-bottom: 1rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #fbbf24, #f97316);
    box-shadow: 0 0 12px rgba(248,250,252,0.8);
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #f9fafb;
}

    .hero-title span.highlight {
        color: #f97316;
    }

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.72rem;
    color: #9ca3af;
    margin-bottom: 1.2rem;
}

.hero-text {
    font-size: 0.96rem;
    color: #d1d5db;
    max-width: 560px;
}

.hero-cta {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.btn-primary-rimos {
    border-radius: 999px;
    border: none;
    padding: 0.75rem 1.9rem;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background-image: linear-gradient(135deg, #f97316, #ef4444);
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
}

    .btn-primary-rimos:hover {
        filter: brightness(1.05);
        color: #ffffff;
    }

.hero-meta {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.84rem;
    color: #9ca3af;
}

    .hero-meta span.label {
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 0.7rem;
        color: #6b7280;
    }

    .hero-meta span.value {
        color: #e5e7eb;
        font-weight: 500;
    }

.hero-card {
    background: #020617;
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.hero-card-inner {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #020617);
    position: relative;
    min-height: 270px;
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
}

    .hero-card-inner::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.7;
    }

.hero-card-content {
    position: relative;
    z-index: 1;
    color: #f9fafb;
}

    .hero-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .hero-card-content p {
        font-size: 0.86rem;
        margin-bottom: 0.4rem;
        color: #e5e7eb;
    }

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.92);
    border: 1px solid rgba(148,163,184,0.5);
    font-size: 0.78rem;
    color: #e5e7eb;
}

    .hero-chip span.dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #22c55e;
    }

/* Sections */
.section-padding {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--rimos-muted);
    margin-bottom: 0.6rem;
}

.section-lead {
    font-size: 0.95rem;
    color: var(--rimos-muted);
    max-width: 640px;
}

/* About */
.about-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
}

    .about-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 0.4rem;
        color: var(--rimos-muted);
    }

        .about-list li span.dot {
            margin-top: 0.35rem;
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: var(--rimos-primary);
        }

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: var(--rimos-bg-soft);
    font-size: 0.78rem;
    color: var(--rimos-muted);
    margin-top: 1.4rem;
}

/* Product groups */
.bg-soft {
    background-color: var(--rimos-bg-soft);
}

.product-card {
    border-radius: 20px;
    border: 1px solid var(--rimos-border);
    padding: 1.6rem 1.5rem;
    background-color: #ffffff;
    height: 100%;
    /*display: flex;*/
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(15,23,42,0.12);
        border-color: var(--rimos-primary);
    }

.product-icon {
    height: 42px;
    border-radius: 14px;
    /*background: var(--rimos-primary-soft);*/
    background: var(--rimos-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rimos-primary-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--rimos-muted);
    margin-bottom: 0.7rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .product-tags li span {
        font-size: 0.78rem;
        /*padding: 0.14rem 0.55rem;*/
        padding: 0.3rem 0.7rem;
        border-radius: 999px;
        background: var(--rimos-bg-soft);
        color: var(--rimos-muted);
    }

.product-link {
    font-size: 0.88rem;
    color: var(--rimos-primary);
    margin-top: 0.8rem;
}

    .product-link:hover {
        color: #ea580c;
    }

/* Detailed product sections */
.product-detail-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.product-detail-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
}

    .product-detail-list li {
        position: relative;
        padding-left: 1.1rem;
        margin-bottom: 0.3rem;
        color: var(--rimos-muted);
    }

        .product-detail-list li::before {
            content: "•";
            position: absolute;
            left: 0.15rem;
            top: 0;
            color: var(--rimos-primary);
        }

/* Brands */
.brand-pill {
    border-radius: 999px;
    border: 1px solid var(--rimos-border);
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.3rem;
    background-color: #ffffff;
}

    .brand-pill span.dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--rimos-accent);
    }

/* Why Rimos */
.why-card {
    border-radius: 20px;
    border: 1px solid var(--rimos-border);
    padding: 1.5rem 1.4rem;
    background-color: #ffffff;
    height: 100%;
}

    .why-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .why-card p {
        font-size: 0.9rem;
        color: var(--rimos-muted);
    }

/* Contact */
.contact-card {
    border-radius: 20px;
    border: 1px solid var(--rimos-border);
    padding: 1.8rem 1.6rem;
    background-color: #ffffff;
    height: 100%;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--rimos-muted);
    margin-bottom: 0.15rem;
}

.contact-value {
    font-size: 0.98rem;
    font-weight: 500;
}

/* Footer */
footer {
    background: #020617;
    color: #9ca3af;
    padding: 2.5rem 0 1.4rem;
    font-size: 0.86rem;
}

    footer h6 {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        color: #6b7280;
        margin-bottom: 0.9rem;
    }

    footer a {
        color: #9ca3af;
    }

        footer a:hover {
            color: #e5e7eb;
        }

.footer-bottom {
    border-top: 1px solid #111827;
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.8rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 3.8rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .dropdown-menu-mega {
        min-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-card-inner {
        min-height: 220px;
    }
}
