
/* ========================================
   Home page styles — Bariers
   ======================================== */

/* --- Hero --- */

.hero {
    background-color: var(--lighter-grey);
    padding: 2rem 0;
}

.hero .container {
    background-image: linear-gradient(rgba(var(--lighter-grey-rgb), 0.95), rgba(var(--lighter-grey-rgb), 0.85)), url("../images/hero-bg-sm.png");
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position: right center;

}

.hero h1 {

}

.hero__highlight {
    color: var(--yellow);
}

.hero p {
    font-weight: 600;
    font-size: 1rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.hero__actions {
}

.hero__actions .btn {
    font-weight: 600;
}

.hero__actions button {
    padding: 1.5rem;
}

.hero__actions .row {
    align-items: stretch;
}

.hero__actions .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.hero__image {
    position: relative;
}

.hero-blueprint {
}

.hero-product {
    text-align: right;
}

.hero-product img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin-left: auto;
}

@media (max-width: 991.98px) {
    .hero-product {
        text-align: center;
    }

    .hero-product img {
        margin: 0 auto;
    }
}

/* --- Process Preview --- */

.process-preview {
    background-color: var(--lighter-grey);
    padding: 2rem 0;

}

.process-card {
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid var(--light-grey);
    display: block;
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
}

.process-card__title {
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(0.6rem, 1.5vw, 1.1rem);
    color: var(--black);
}

.process-card__text {
    font-weight: 200;
    font-size: 0.8rem;
    color: var(--dark-grey);
}

.process-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--grey);
}

/* --- Advantages --- */

.advantages {
    padding: 2rem 0;
    background-color: var(--dark-blue);
    color: var(--white);
    margin-bottom: 2rem;
}

.advantages .col-lg-3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.advantages .col-lg-3 i {
    font-size: 1.5rem;
    color: var(--yellow);
    flex-shrink: 0;
}

/* --- Customization --- */

.customization {
    padding: 2rem 0;
}

.customization h2 {
    margin-bottom: 2rem;
}

.scheme-image {
}

.scheme-image__image {
    width: 100%;
}

.customization-ral {
    background: linear-gradient(rgba(var(--white-rgb), 0.95), rgba(var(--white-rgb), 0.95)), url("../images/customization-ral.jpg") no-repeat;
    background-size: auto 100%;
    background-position: right center;
    padding: 2rem;
    border-radius: 10px;
}

.customization .col-6 {
    counter-reset: custom-item;
}

.customization .col-6 + .col-6 {
    counter-reset: custom-item 5;
}

.custom-item {
    margin-bottom: 2rem;
    counter-increment: custom-item;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-item__title {
    font-size: 1rem;
    font-weight: 700;
}

.custom-item__text {
    color: var(--grey);
    font-size: 0.8rem;
}

.custom-item::before {
    content: counter(custom-item);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--yellow);
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* --- Workflow --- */

.workflow {
    padding: 2rem 0;
}

.workflow h2 {
    padding: 2rem 0;
}

.workflow .row {
    counter-reset: step;
}

.step {
    font-weight: 500;
    counter-increment: step;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.step::before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step__title {
    font-weight: 700;
    color: var(--black);
}

.step__text {
    color: var(--dark-grey);
    font-size: 0.8rem;
}

/* --- Applications --- */

.applications {
    padding: 2rem 0;
    background-color: var(--lighter-grey);
}

.applications h2 {
    margin-bottom: 2rem;
}

.application-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.application-card img {
    width: 100%;
    height: auto;
    display: block;
}

.application-card .application-body {
    position: absolute;
    left: 0;
    bottom: 10%;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* --- Catalog --- */

.catalog {
    padding: 2rem 0;
}

.catalog h2 {
    margin-bottom: 2rem;
}

.product-card {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--lighter-grey);
    border-radius: 10px;
    height: 100%;
    border: 2px solid var(--light-grey);
    transition: border-color 0.25s;
}
.product-card:hover {
    border-color: var(--grey);
}

.product-card img {
    flex-shrink: 0;
    width: 90px;
    height: auto;
}

.product-card__content {
    flex: 1;
    min-width: 0;
}

.product-card__title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 0.6rem;
    font-family: 'Google Sans 17pt', 'Google Sans', sans-serif;
}

.product-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-card__list li {
    position: relative;

    padding-left: 0.75rem;
    font-size: 0.8rem;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.product-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--yellow);
}

/* --- Projects --- */

.projects {
    padding: 2rem 0 0 0;
}

.projects h2 {
}

.project-card {
}

/* --- Stats --- */

.stats {
    padding: 2rem 0;
    background-color: var(--dark-blue);
    font-weight: 700;
    font-family: 'Google Sans 17pt', 'Google Sans', sans-serif;
    margin-bottom: 2rem;
}

.stats__number {
    color: var(--yellow);
    font-size: 2.5rem;
}

.stats__text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 400;
}

/* --- CTA --- */

.cta {
    padding: 2rem 0;
}

.cta h2 {
}

.cta p {
    font-size: 1.125rem;
}

.cta button {
    font-weight: 600;
}

.cta__description {
    margin-bottom: 2rem;
}

.cta__description p {
    margin-bottom: 2rem;
}

.cta__description h2 {
    margin-bottom: 2rem;
}

.cta__feature {
    display: flex;
    align-items: center;

    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--yellow);
}

.cta__icon i {
    color: var(--yellow);
    font-size: 1.5rem;
}

.cta form {
}

.cta form input:not(.form-check-input),
.cta form textarea {
    width: 100%;
}



