:root {
    --primary: #f4b223;
    --primary-dark: #d99500;
    --dark: #111111;
    --dark-soft: #1c1c1c;
    --text: #282828;
    --muted: #666666;
    --light: #f6f6f6;
    --white: #ffffff;
    --border: #e4e4e4;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--primary);
    color: var(--dark);
    font-size: 24px;
    font-weight: 900;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 18px;
}

.brand-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu > a {
    position: relative;
    padding: 30px 0;
    font-size: 14px;
    font-weight: 700;
}

.nav-menu > a:not(.nav-quote)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 23px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after {
    width: 100%;
}

.nav-quote {
    padding: 13px 20px !important;
    border-radius: 7px;
    background: var(--primary);
    color: var(--dark);
}

.nav-quote:hover {
    background: var(--primary-dark);
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            115deg,
            rgba(10, 10, 10, 0.98) 0%,
            rgba(10, 10, 10, 0.90) 52%,
            rgba(10, 10, 10, 0.75) 100%
        ),
        radial-gradient(
            circle at 80% 30%,
            #565656 0%,
            #171717 45%,
            #050505 100%
        );
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -180px;
    width: 600px;
    height: 600px;
    border: 90px solid rgba(244, 178, 35, 0.12);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    right: 10%;
    bottom: -150px;
    width: 400px;
    height: 400px;
    background: var(--primary);
    opacity: 0.08;
    transform: rotate(45deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
    gap: 80px;
    padding: 90px 0;
}

.hero-label,
.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero-label {
    color: var(--primary);
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(45px, 6vw, 74px);
    line-height: 1.04;
    letter-spacing: -2.5px;
}

.hero-copy h1 span {
    color: var(--primary);
}

.hero-copy > p {
    max-width: 660px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--primary);
    color: var(--dark);
}

.button-primary:hover {
    background: var(--primary-dark);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.button-dark {
    width: 100%;
    margin-top: 22px;
    background: var(--dark);
    color: var(--white);
}

.button-light {
    background: var(--white);
    color: var(--dark);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 38px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
}

.hero-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.hero-card-label {
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-card h2 {
    margin-top: 10px;
    font-size: 28px;
    line-height: 1.2;
}

.hero-card p {
    margin-top: 14px;
    color: var(--muted);
}

.hero-card ul {
    margin-top: 20px;
    padding-left: 20px;
}

.hero-card li {
    margin-bottom: 8px;
}

.trust-bar {
    background: var(--primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
    min-height: 118px;
    padding: 26px 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.trust-grid article:last-child {
    border-right: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    margin-bottom: 4px;
    font-size: 16px;
}

.trust-grid span {
    font-size: 13px;
    opacity: 0.76;
}

.section {
    padding: 100px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.section-heading h2,
.about-content h2,
.services-heading h2,
.final-cta h2 {
    max-width: 720px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.3px;
}

.section-heading p {
    max-width: 650px;
    margin-top: 14px;
    color: var(--muted);
}

.text-link {
    flex: none;
    color: var(--primary-dark);
    font-weight: 800;
}

.categories-section {
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.category-number {
    position: absolute;
    top: 18px;
    right: 22px;
    color: #dddddd;
    font-size: 40px;
    font-weight: 900;
}

.category-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 38px;
    border-radius: 10px;
    background: var(--primary);
    font-size: 26px;
}

.category-card h3 {
    font-size: 21px;
    line-height: 1.25;
}

.category-card p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 14px;
}

.category-card a {
    position: absolute;
    left: 30px;
    bottom: 28px;
    font-size: 13px;
    font-weight: 800;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    min-height: 550px;
    display: flex;
    align-items: flex-end;
    padding: 35px;
    border-radius: 16px;
    overflow: hidden;
    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.15)
        ),
        radial-gradient(
            circle at 60% 35%,
            #8d8d8d,
            #242424 50%,
            #080808 100%
        );
}

.about-visual-content {
    max-width: 380px;
    color: var(--white);
}

.about-visual-content span {
    display: block;
    color: var(--primary);
    font-weight: 800;
}

.about-visual-content strong {
    display: block;
    margin-top: 10px;
    font-size: 29px;
    line-height: 1.2;
}

.about-content > p {
    margin-top: 18px;
    color: var(--muted);
}

.about-points {
    margin: 30px 0;
    border-top: 1px solid var(--border);
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.about-points strong {
    color: var(--primary-dark);
}

.products-section {
    background: var(--light);
}

.empty-products {
    padding: 65px 30px;
    border: 1px dashed #c8c8c8;
    border-radius: 14px;
    background: var(--white);
    text-align: center;
}

.empty-products-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--primary);
    font-size: 30px;
}

.empty-products h3 {
    font-size: 26px;
}

.empty-products p {
    max-width: 620px;
    margin: 10px auto 24px;
    color: var(--muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.product-image {
    height: 230px;
    display: grid;
    place-items: center;
    background: #ececec;
}

.product-image span {
    font-size: 70px;
    opacity: 0.25;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-content {
    padding: 24px;
}

.product-category {
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-card h3 {
    margin-top: 7px;
    font-size: 20px;
}

.product-card p {
    margin: 10px 0 16px;
    color: var(--muted);
    font-size: 14px;
}

.product-card a {
    font-weight: 800;
}

.services-preview {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.services-heading {
    max-width: 800px;
}

.services-heading > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 55px;
}

.services-grid article {
    padding: 28px;
    border-top: 3px solid var(--primary);
    background: var(--dark-soft);
}

.services-grid article > span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.services-grid h3 {
    margin-top: 28px;
    font-size: 20px;
}

.services-grid p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.final-cta {
    padding: 70px 0;
    background: var(--primary);
}

.final-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta-content > div > span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.final-cta p {
    margin-top: 12px;
    max-width: 670px;
}

.site-footer {
    background: #090909;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 55px;
    padding: 70px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
}

.footer-brand strong {
    display: block;
}

.footer-brand p {
    font-size: 12px;
}

.footer-description {
    max-width: 350px;
    margin-top: 20px;
    font-size: 14px;
}

.footer-grid h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 15px;
}

.footer-grid section > a,
.footer-grid section > p {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-grid section > a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
}

.floating-quote {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    font-size: 25px;
}

.internal-page {
    min-height: 500px;
    padding: 120px 0;
    background: var(--light);
}

.internal-page h1 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
}

.internal-page p {
    max-width: 700px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 18px;
}

@media (max-width: 980px) {
    .menu-button {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 4%;
        background: var(--white);
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu > a {
        padding: 13px 0;
    }

    .nav-menu > a::after {
        display: none;
    }

    .nav-quote {
        margin-top: 8px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-card {
        max-width: 600px;
    }

    .trust-grid,
    .categories-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 430px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .brand-text small {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-copy h1 {
        letter-spacing: -1.5px;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 8px;
    }

    .trust-grid,
    .categories-grid,
    .services-grid,
    .products-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .section {
        padding: 75px 0;
    }

    .section-heading,
    .final-cta-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-grid {
        gap: 45px;
    }

    .about-visual {
        min-height: 350px;
    }

    .services-preview {
        padding: 75px 0;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.catalog-hero {
    padding: 90px 0;
    background:
        linear-gradient(
            110deg,
            rgba(8, 8, 8, 0.98),
            rgba(25, 25, 25, 0.92)
        );
    color: var(--white);
}

.catalog-hero-content {
    max-width: var(--container);
}

.catalog-hero h1 {
    max-width: 750px;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.catalog-hero p {
    max-width: 670px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
}

.catalog-section {
    padding: 65px 0 100px;
    background: #f5f5f5;
}

.catalog-search {
    display: flex;
    margin-bottom: 38px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
}

.catalog-search input {
    flex: 1;
    min-width: 0;
    padding: 17px 20px;
    border: 0;
    outline: 0;
    font: inherit;
}

.catalog-search button {
    min-width: 130px;
    padding: 0 24px;
    border: 0;
    background: var(--primary);
    color: var(--dark);
    font-weight: 800;
    cursor: pointer;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 105px;
}

.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.filter-title h2 {
    font-size: 20px;
}

.filter-title a {
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
}

.category-filters {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
}

.category-filters a {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 17px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.category-filters a:last-child {
    border-bottom: 0;
}

.category-filters a:hover,
.category-filters a.active {
    background: var(--primary);
    color: var(--dark);
}

.category-filters strong {
    min-width: 26px;
    text-align: center;
}

.catalog-help {
    margin-top: 25px;
    padding: 25px;
    border-radius: 10px;
    background: var(--dark);
    color: var(--white);
}

.catalog-help > span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.catalog-help h3 {
    margin-top: 8px;
}

.catalog-help p {
    margin: 10px 0 20px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.catalog-help a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.catalog-toolbar {
    min-height: 44px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.catalog-toolbar span {
    color: var(--muted);
}

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.catalog-product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.catalog-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.catalog-product-image {
    position: relative;
    height: 235px;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(circle, #f2f2f2, #dddddd);
}

.catalog-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.catalog-product-card:hover img {
    transform: scale(1.04);
}

.product-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #888888;
}

.product-placeholder span {
    font-size: 65px;
    opacity: 0.28;
}

.product-placeholder small {
    margin-top: 10px;
}

.featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 5px;
    background: var(--primary);
    color: var(--dark);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.catalog-product-body {
    padding: 22px;
}

.catalog-product-category {
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.catalog-product-body h2 {
    min-height: 51px;
    margin-top: 7px;
    font-size: 19px;
    line-height: 1.3;
}

.catalog-product-body h2 a:hover {
    color: var(--primary-dark);
}

.catalog-product-body > p {
    min-height: 66px;
    margin-top: 11px;
    color: var(--muted);
    font-size: 13px;
}

.product-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #5d5d5d;
    font-size: 12px;
    font-weight: 700;
}

.product-availability span,
.detail-availability span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.catalog-product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 20px;
}

.catalog-product-actions a {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
}

.product-detail-button {
    border: 1px solid var(--border);
}

.product-detail-button:hover {
    border-color: var(--dark);
}

.product-quote-button {
    background: var(--dark);
    color: var(--white);
}

.product-quote-button:hover {
    background: var(--primary);
    color: var(--dark);
}

.catalog-empty {
    padding: 70px 25px;
    border: 1px dashed #c8c8c8;
    border-radius: 12px;
    background: var(--white);
    text-align: center;
}

.catalog-empty > span {
    font-size: 60px;
    opacity: 0.25;
}

.catalog-empty h2 {
    margin-top: 10px;
}

.catalog-empty p {
    margin: 8px 0 22px;
    color: var(--muted);
}

.product-breadcrumb {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.product-breadcrumb .container {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--muted);
    font-size: 12px;
}

.product-breadcrumb a:hover {
    color: var(--primary-dark);
}

.product-breadcrumb strong {
    color: var(--dark);
}

.product-detail {
    padding: 75px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 65px;
    align-items: center;
}

.product-detail-visual {
    min-height: 540px;
    overflow: hidden;
    border-radius: 16px;
    background: #ededed;
}

.product-detail-visual > img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.product-detail-placeholder {
    min-height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.product-detail-placeholder span {
    font-size: 110px;
    opacity: 0.18;
}

.product-detail-placeholder strong {
    margin-top: 15px;
    font-size: 20px;
}

.product-detail-placeholder small {
    margin-top: 4px;
    color: var(--muted);
}

.product-detail-information h1 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.product-short-description {
    margin-top: 20px;
    color: var(--muted);
    font-size: 17px;
}

.detail-availability {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 23px;
    font-size: 13px;
    font-weight: 800;
}

.product-price-area {
    margin-top: 25px;
    padding: 20px;
    border-left: 4px solid var(--primary);
    background: var(--light);
}

.product-price-area small,
.product-price-area strong {
    display: block;
}

.product-price-area small {
    color: var(--muted);
}

.product-price-area strong {
    margin-top: 3px;
    font-size: 22px;
}

.product-description {
    margin-top: 24px;
    color: var(--muted);
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.product-contact-button {
    border-color: var(--dark);
    color: var(--dark);
}

.product-contact-button:hover {
    background: var(--dark);
    color: var(--white);
}

.product-commercial-notice {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.product-commercial-notice p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.product-specifications {
    padding: 90px 0;
    background: var(--light);
}

.product-specifications-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
}

.product-specifications h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.1;
}

.product-specifications p {
    margin-top: 20px;
    color: var(--muted);
}

.characteristics-card {
    padding: 32px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.characteristics-card h3 {
    margin-bottom: 20px;
}

.characteristics-card ul {
    list-style: none;
}

.characteristics-card li {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.characteristics-card li:last-child {
    border-bottom: 0;
}

.characteristics-card li span {
    color: var(--primary-dark);
    font-weight: 900;
}

.related-products {
    padding: 90px 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-products-grid article {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.related-product-image {
    height: 210px;
    display: grid;
    place-items: center;
    background: #eeeeee;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-product-image span {
    font-size: 65px;
    opacity: 0.2;
}

.related-products-grid article > div:last-child {
    padding: 22px;
}

.related-products-grid h3 {
    font-size: 18px;
}

.related-products-grid p {
    margin: 10px 0 15px;
    color: var(--muted);
    font-size: 13px;
}

.related-products-grid a {
    font-size: 13px;
    font-weight: 800;
}

.product-not-found {
    min-height: 600px;
    display: grid;
    place-items: center;
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.product-not-found span {
    font-size: 80px;
    opacity: 0.25;
}

.product-not-found h1 {
    margin-top: 10px;
    font-size: 42px;
}

.product-not-found p {
    max-width: 600px;
    margin: 12px auto 24px;
    color: var(--muted);
}

@media (max-width: 1050px) {
    .catalog-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
    }

    .product-detail-grid,
    .product-specifications-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-visual {
        min-height: 420px;
    }

    .product-detail-visual > img,
    .product-detail-placeholder {
        height: 420px;
        min-height: 420px;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .catalog-search {
        flex-direction: column;
        background: transparent;
        border: 0;
        overflow: visible;
    }

    .catalog-search input {
        border: 1px solid var(--border);
        border-radius: 8px;
        background: var(--white);
    }

    .catalog-search button {
        min-height: 48px;
        margin-top: 9px;
        border-radius: 8px;
    }

    .catalog-products-grid,
    .related-products-grid {
        grid-template-columns: 1fr;
    }

    .catalog-product-body h2,
    .catalog-product-body > p {
        min-height: auto;
    }

    .product-detail {
        padding: 50px 0;
    }

    .product-detail-grid {
        gap: 35px;
    }

    .product-detail-actions,
    .product-detail-actions .button {
        width: 100%;
    }
}

.quote-hero {
    padding: 85px 0;
    background:
        linear-gradient(
            115deg,
            rgba(8, 8, 8, 0.98),
            rgba(28, 28, 28, 0.94)
        );
    color: var(--white);
}

.quote-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}

.quote-hero h1 {
    max-width: 720px;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.quote-hero p {
    max-width: 650px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
}

.quote-hero-detail {
    max-width: 300px;
    padding-left: 22px;
    border-left: 3px solid var(--primary);
}

.quote-hero-detail span,
.quote-hero-detail strong {
    display: block;
}

.quote-hero-detail span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quote-hero-detail strong {
    margin-top: 7px;
    font-size: 16px;
}

.quote-section {
    padding: 90px 0;
    background: #f4f4f4;
}

.quote-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 75px;
    align-items: start;
}

.quote-information {
    position: sticky;
    top: 115px;
}

.quote-information h2 {
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.quote-information > p {
    margin-top: 18px;
    color: var(--muted);
}

.quote-steps {
    margin-top: 32px;
    border-top: 1px solid var(--border);
}

.quote-steps article {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.quote-steps article > span {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
}

.quote-steps strong {
    display: block;
}

.quote-steps p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.quote-support-card {
    margin-top: 30px;
    padding: 25px;
    border-radius: 10px;
    background: var(--dark);
    color: var(--white);
}

.quote-support-card strong {
    color: var(--primary);
}

.quote-support-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.quote-support-card li {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.quote-form-container {
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.07);
}

.quote-form-heading > span {
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quote-form-heading h2 {
    margin-top: 5px;
    font-size: 30px;
}

.quote-form-heading p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.form-alert {
    margin-top: 25px;
    padding: 16px 18px;
    border-radius: 8px;
}

.form-alert strong,
.form-alert span {
    display: block;
}

.form-alert-error {
    border: 1px solid #efb5b5;
    background: #fff1f1;
    color: #9d2222;
}

.form-alert span {
    margin-top: 3px;
    font-size: 13px;
}

.quote-form {
    margin-top: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 13px;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 7px;
    outline: none;
    background: var(--white);
    color: var(--text);
    font: inherit;
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 125px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(244, 178, 35, 0.16);
}

.checkbox-field {
    display: flex !important;
    align-items: flex-start;
    flex-direction: row !important;
    gap: 11px !important;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--light);
    cursor: pointer;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-dark);
}

.checkbox-field span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.quote-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.quote-form-footer p {
    max-width: 390px;
    color: var(--muted);
    font-size: 12px;
}

.quote-submit {
    border: 0;
    cursor: pointer;
}

.quote-success {
    padding: 30px 10px;
    text-align: center;
}

.quote-success-icon {
    width: 75px;
    height: 75px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    font-size: 35px;
    font-weight: 900;
}

.quote-success > span {
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quote-success h2 {
    max-width: 520px;
    margin: 9px auto 18px;
    font-size: 34px;
    line-height: 1.15;
}

.quote-success p {
    max-width: 500px;
    margin: 10px auto;
    color: var(--muted);
}

.quote-code {
    display: inline-block;
    margin: 10px 0;
    padding: 13px 22px;
    border: 2px dashed var(--primary-dark);
    border-radius: 8px;
    background: var(--light);
    font-size: 24px;
    letter-spacing: 1px;
}

.quote-success-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.quote-outline-button {
    border-color: var(--dark);
    color: var(--dark);
}

.quote-outline-button:hover {
    background: var(--dark);
    color: var(--white);
}

@media (max-width: 900px) {
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .quote-information {
        position: static;
    }
}

@media (max-width: 700px) {
    .quote-hero-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .quote-form-container {
        padding: 27px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-full {
        grid-column: auto;
    }

    .quote-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .quote-submit {
        width: 100%;
    }
}

.visit-fields {
    padding: 22px;
    border: 1px solid #e0c275;
    border-radius: 10px;
    background: #fffaf0;
}

.visit-fields-heading strong {
    display: block;
    font-size: 15px;
}

.visit-fields-heading p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.visit-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.visit-warning {
    margin-top: 17px;
    padding: 12px 14px;
    border-left: 3px solid var(--primary);
    background: var(--white);
    color: var(--muted);
    font-size: 12px;
}

.visit-pending-notice {
    max-width: 520px;
    margin: 22px auto 0;
    padding: 18px;
    border: 1px solid #e0c275;
    border-radius: 9px;
    background: #fffaf0;
}

.visit-pending-notice strong {
    color: var(--primary-dark);
}

.visit-pending-notice p {
    margin-top: 7px;
    font-size: 13px;
}

[hidden] {
    display: none !important;
}

@media (max-width: 600px) {
    .visit-fields-grid {
        grid-template-columns: 1fr;
    }
}

.chatbot-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    font-family: Arial, Helvetica, sans-serif;
}

.chatbot-toggle {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 9px;
    border: 0;
    border-radius: 32px;
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    font-weight: 800;
}

.chatbot-toggle-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--dark);
    font-size: 20px;
}

.chatbot-toggle-label {
    font-size: 13px;
}

.chatbot-open .chatbot-toggle {
    display: none;
}

.chatbot-panel {
    width: min(390px, calc(100vw - 28px));
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
}

.chatbot-header {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 17px;
    background: var(--dark);
    color: var(--white);
}

.chatbot-agent {
    display: flex;
    align-items: center;
    gap: 11px;
}

.chatbot-avatar,
.message-avatar {
    display: grid;
    place-items: center;
    flex: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    font-weight: 900;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    font-size: 20px;
}

.chatbot-agent strong {
    display: block;
    font-size: 14px;
}

.chatbot-agent span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
}

.chatbot-agent i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4bd37b;
}

.chatbot-header-actions {
    display: flex;
    gap: 5px;
}

.chatbot-header-actions button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
}

.chatbot-header-actions button:hover {
    background: rgba(255, 255, 255, 0.16);
}

.chatbot-messages {
    height: 405px;
    overflow-y: auto;
    padding: 19px 15px;
    background:
        linear-gradient(
            rgba(248, 248, 248, 0.96),
            rgba(248, 248, 248, 0.96)
        ),
        radial-gradient(
            circle,
            #dddddd 1px,
            transparent 1px
        );
    background-size: auto, 18px 18px;
    scrollbar-width: thin;
}

.chat-message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 15px;
}

.user-message {
    justify-content: flex-end;
}

.message-avatar {
    width: 29px;
    height: 29px;
    font-size: 12px;
}

.message-content {
    max-width: 81%;
    padding: 11px 13px 8px;
    border-radius: 13px 13px 13px 3px;
    background: var(--white);
    color: var(--text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.user-message .message-content {
    border-radius: 13px 13px 3px 13px;
    background: var(--primary);
    color: var(--dark);
}

.message-content p {
    white-space: pre-line;
    word-break: break-word;
    font-size: 13px;
    line-height: 1.48;
}

.message-content small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    text-align: right;
}

.user-message .message-content small {
    color: rgba(0, 0, 0, 0.52);
}

.chatbot-quick-replies {
    max-height: 105px;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 10px 13px;
    border-top: 1px solid var(--border);
    background: var(--white);
    scrollbar-width: thin;
}

.chatbot-quick-replies:empty {
    display: none;
}

.chatbot-quick-replies button {
    flex: none;
    padding: 8px 11px;
    border: 1px solid #e1b342;
    border-radius: 18px;
    background: #fffaf0;
    color: #6b4d00;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
}

.chatbot-quick-replies button:hover {
    background: var(--primary);
    color: var(--dark);
}

.chatbot-form {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.chatbot-form textarea {
    flex: 1;
    min-height: 43px;
    max-height: 110px;
    resize: none;
    padding: 11px 13px;
    border: 1px solid #dddddd;
    border-radius: 13px;
    outline: none;
    font: inherit;
    font-size: 13px;
}

.chatbot-form textarea:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(244, 178, 35, 0.14);
}

.chatbot-form button {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: none;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    cursor: pointer;
    font-size: 17px;
    font-weight: 900;
}

.chatbot-form button:disabled,
.chatbot-form textarea:disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.chatbot-footer {
    padding: 7px 12px 9px;
    background: var(--white);
    color: #999999;
    font-size: 9px;
    text-align: center;
}

.typing-content {
    min-width: 62px;
    display: flex;
    gap: 4px;
    padding: 14px;
}

.typing-content span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9b9b9b;
    animation: chatbotTyping 1.2s infinite;
}

.typing-content span:nth-child(2) {
    animation-delay: 0.15s;
}

.typing-content span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes chatbotTyping {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    30% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .chatbot-widget {
        right: 14px;
        bottom: 14px;
    }

    .chatbot-panel {
        width: calc(100vw - 28px);
    }

    .chatbot-messages {
        height: min(430px, 58vh);
    }

    .chatbot-toggle-label {
        display: none;
    }

    .chatbot-toggle {
        width: 58px;
        padding: 8px;
    }
}

/* =========================================================
   PÁGINA DE SERVICIOS
   ========================================================= */

.service-page-hero,
.about-page-hero,
.contact-page-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        linear-gradient(
            110deg,
            rgba(8, 8, 8, 0.99),
            rgba(30, 30, 30, 0.94)
        );
    color: var(--white);
}

.service-page-hero::after,
.about-page-hero::after,
.contact-page-hero::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(244, 178, 35, 0.1);
    border-radius: 50%;
}

.service-page-hero-content,
.about-page-hero-layout,
.contact-page-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: center;
}

.service-page-hero h1,
.about-page-hero h1,
.contact-page-hero h1 {
    max-width: 850px;
    font-size: clamp(44px, 6vw, 70px);
    line-height: 1.04;
    letter-spacing: -2.3px;
}

.service-page-hero h1 span,
.about-page-hero h1 span,
.contact-page-hero h1 span {
    color: var(--primary);
}

.service-page-hero-copy > p,
.about-page-hero-copy > p,
.contact-page-hero-layout > div:first-child > p {
    max-width: 700px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
}

.service-page-actions,
.about-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.service-outline-button,
.about-outline-button {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.service-outline-button:hover,
.about-outline-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.service-page-summary,
.about-page-hero-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
}

.service-page-summary > span,
.about-page-hero-card > span {
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-page-summary h2 {
    margin-top: 8px;
    font-size: 28px;
    line-height: 1.2;
}

.service-page-summary ul {
    margin-top: 22px;
    list-style: none;
}

.service-page-summary li {
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.service-page-summary li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--primary-dark);
    font-weight: 900;
}

.service-page-list {
    padding: 100px 0;
    background: var(--light);
}

.service-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-detail-card {
    position: relative;
    min-height: 440px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
}

.service-detail-number {
    position: absolute;
    right: 22px;
    top: 15px;
    color: #ededed;
    font-size: 46px;
    font-weight: 900;
}

.service-detail-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--primary);
    font-size: 25px;
}

.service-detail-card h3 {
    margin-top: 28px;
    font-size: 22px;
}

.service-detail-card > p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}

.service-detail-card ul {
    margin-top: 22px;
    list-style: none;
}

.service-detail-card li {
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
}

.service-detail-card li::before {
    content: "—";
    margin-right: 8px;
    color: var(--primary-dark);
}

.service-process {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.service-process-heading {
    max-width: 760px;
}

.service-process-heading h2 {
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.08;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 55px;
    background: rgba(255, 255, 255, 0.1);
}

.service-process-grid article {
    min-height: 250px;
    padding: 28px;
    background: var(--dark-soft);
}

.service-process-grid article > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.service-process-grid strong {
    display: block;
    margin-top: 45px;
    font-size: 19px;
}

.service-process-grid p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.service-benefits {
    padding: 100px 0;
}

.service-benefits-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.service-benefits-layout h2 {
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.08;
}

.service-benefits-layout > div:first-child > p {
    margin: 20px 0 28px;
    color: var(--muted);
}

.service-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-benefit-list article {
    padding: 24px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 9px;
    background: var(--light);
}

.service-benefit-list p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}

.service-final-cta,
.about-final-section {
    padding: 75px 0;
    background: var(--primary);
}

.service-final-cta-content,
.about-final-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.service-final-cta-content > div > span,
.about-final-content > div > span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-final-cta h2,
.about-final-section h2 {
    max-width: 760px;
    margin-top: 7px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.service-final-cta p {
    margin-top: 12px;
}

/* =========================================================
   PÁGINA NOSOTROS
   ========================================================= */

.about-page-hero-card > strong {
    display: block;
    margin-top: 10px;
    font-size: 25px;
    line-height: 1.25;
}

.about-page-hero-card > div {
    margin-top: 24px;
}

.about-page-hero-card p {
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.about-company-section {
    padding: 105px 0;
}

.about-company-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-company-visual {
    min-height: 580px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 40px;
    border-radius: 16px;
    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.1)
        ),
        radial-gradient(
            circle at 65% 30%,
            #8a8a8a,
            #282828 48%,
            #080808 100%
        );
    color: var(--white);
}

.about-company-visual-number span,
.about-company-visual-number strong {
    display: block;
}

.about-company-visual-number span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.about-company-visual-number strong {
    margin-top: 10px;
    max-width: 340px;
    font-size: 45px;
    line-height: 1;
}

.about-company-visual-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.about-company-visual-detail span {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    font-size: 10px;
}

.about-company-content h2 {
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.08;
}

.about-company-content > p {
    margin-top: 18px;
    color: var(--muted);
}

.about-company-points {
    margin-top: 30px;
}

.about-company-points article {
    display: flex;
    gap: 17px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.about-company-points article > span {
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
}

.about-company-points p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.mission-vision-section {
    padding: 100px 0;
    background: var(--light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mission-vision-card {
    min-height: 400px;
    padding: 42px;
    border-radius: 14px;
}

.mission-card {
    background: var(--primary);
    color: var(--dark);
}

.vision-card {
    background: var(--dark);
    color: var(--white);
}

.mission-vision-card > span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vision-card > span {
    color: var(--primary);
}

.mission-vision-card h2 {
    margin-top: 80px;
    max-width: 550px;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.08;
}

.mission-vision-card p {
    margin-top: 20px;
    max-width: 600px;
    line-height: 1.8;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.65);
}

.company-values-section {
    padding: 100px 0;
}

.company-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.company-values-grid article {
    min-height: 240px;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.company-values-grid article > span {
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
}

.company-values-grid h3 {
    margin-top: 35px;
    font-size: 20px;
}

.company-values-grid p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
}

.about-operation-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.about-operation-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 75px;
}

.about-operation-copy h2 {
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.08;
}

.about-operation-copy p {
    margin: 20px 0 28px;
    color: rgba(255, 255, 255, 0.65);
}

.about-operation-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-operation-steps article {
    min-height: 210px;
    padding: 25px;
    border-top: 3px solid var(--primary);
    background: var(--dark-soft);
}

.about-operation-steps article > span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
}

.about-operation-steps strong {
    display: block;
    margin-top: 30px;
    font-size: 18px;
}

.about-operation-steps p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* =========================================================
   PÁGINA CONTACTO
   ========================================================= */

.contact-hero-badge {
    padding: 28px;
    border-left: 4px solid var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.contact-hero-badge strong,
.contact-hero-badge span {
    display: block;
}

.contact-hero-badge strong {
    color: var(--primary);
    font-size: 17px;
}

.contact-hero-badge span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.contact-page-main {
    padding: 100px 0;
    background: var(--light);
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.contact-information-column {
    position: sticky;
    top: 110px;
}

.contact-information-column h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
}

.contact-information-column > p {
    margin-top: 18px;
    color: var(--muted);
}

.contact-method-list {
    margin-top: 32px;
}

.contact-method-list article {
    display: flex;
    gap: 17px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.contact-method-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    flex: none;
    border-radius: 9px;
    background: var(--primary);
    font-weight: 900;
}

.contact-method-list span,
.contact-method-list strong,
.contact-method-list a {
    display: block;
}

.contact-method-list span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-method-list strong {
    margin-top: 3px;
}

.contact-method-list a {
    margin-top: 6px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
}

.contact-method-list p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
}

.contact-visit-card {
    margin-top: 28px;
    padding: 27px;
    border-radius: 11px;
    background: var(--dark);
    color: var(--white);
}

.contact-visit-card > span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-visit-card h3 {
    margin-top: 8px;
    font-size: 21px;
}

.contact-visit-card p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.contact-visit-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.contact-form-card {
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.07);
}

.contact-form-heading > span {
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form-heading h2 {
    margin-top: 5px;
    font-size: 32px;
}

.contact-form-heading p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.contact-page-form {
    margin-top: 30px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
}

.contact-form-full {
    grid-column: 1 / -1;
}

.contact-form-field {
    display: grid;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 7px;
    outline: none;
    background: var(--white);
    color: var(--text);
    font: inherit;
    font-size: 14px;
    font-weight: 400;
}

.contact-form-field textarea {
    resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(244, 178, 35, 0.16);
}

.contact-preference {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.contact-preference legend {
    padding: 0 7px;
    font-size: 12px;
    font-weight: 800;
}

.contact-preference label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    cursor: pointer;
}

.contact-preference input {
    accent-color: var(--primary-dark);
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.contact-form-footer p {
    max-width: 380px;
    color: var(--muted);
    font-size: 11px;
}

.contact-form-footer button {
    border: 0;
    cursor: pointer;
}

.contact-success {
    padding: 45px 15px;
    text-align: center;
}

.contact-success > div {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary);
    font-size: 34px;
    font-weight: 900;
}

.contact-success > span {
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-success h2 {
    max-width: 500px;
    margin: 8px auto 15px;
    font-size: 34px;
    line-height: 1.15;
}

.contact-success p {
    max-width: 520px;
    margin: 0 auto 25px;
    color: var(--muted);
}

.contact-faq-section {
    padding: 100px 0;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-faq-grid details {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--white);
}

.contact-faq-grid summary {
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
}

.contact-faq-grid p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
    .service-page-hero-content,
    .about-page-hero-layout,
    .contact-page-hero-layout,
    .service-benefits-layout,
    .about-company-layout,
    .about-operation-layout,
    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .service-page-summary,
    .about-page-hero-card,
    .contact-hero-badge {
        max-width: 650px;
    }

    .service-page-grid,
    .company-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-information-column {
        position: static;
    }
}

@media (max-width: 700px) {
    .service-page-hero,
    .about-page-hero,
    .contact-page-hero {
        padding: 75px 0;
    }

    .service-page-grid,
    .service-benefit-list,
    .mission-vision-grid,
    .company-values-grid,
    .about-operation-steps,
    .contact-faq-grid {
        grid-template-columns: 1fr;
    }

    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-final-cta-content,
    .about-final-content,
    .contact-form-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-full {
        grid-column: auto;
    }

    .contact-form-footer button {
        width: 100%;
    }

    .about-company-visual {
        min-height: 420px;
    }

    .mission-vision-card h2 {
        margin-top: 45px;
    }
}