:root {
    --primary-color: #c89b3c;
    --primary-dark: #8f6922;
    --dark-color: #171717;
    --muted-color: #626262;
    --line-color: #e4ded1;
    --light-color: #f6f3ed;
    --white: #ffffff;
    --max-width: 1200px;
    --bg-gradient: linear-gradient(180deg, #f7f4ec 0%, #ffffff 42%, #f2efe8 100%);
    --shadow-soft: 0 18px 45px rgba(23, 23, 23, 0.09);
    --shadow-lift: 0 24px 55px rgba(23, 23, 23, 0.16);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--bg-gradient);
    min-height: 100vh;
    letter-spacing: 0;
}

body.lightbox-open {
    overflow: hidden;
}

.sr-only,
.company-field {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: rgba(10, 10, 10, 0.94);
    color: var(--white);
    padding: 0.92rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.navbar.is-scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    padding: 0 20px 0 30px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #ffffff;
}

.logo-img {
    width: clamp(190px, 22vw, 280px);
    height: auto;
    max-height: 46px;
    object-fit: contain;
    display: block;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--primary-color);
    color: #111111;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-name {
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.35rem;
    align-items: center;
    margin-left: 1.25rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s, background 0.3s;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 0.78rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(200, 155, 60, 0.22);
}

.nav-links a.active {
    color: #111111;
    background: var(--primary-color);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 0.45rem;
    font-size: 0.72rem;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 1002;
    display: grid;
    min-width: 245px;
    padding: 0.45rem;
    border-radius: 8px;
    background: rgba(17, 17, 17, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    justify-content: flex-start;
    width: 100%;
    min-height: 42px;
    padding: 0 0.85rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.active {
    color: #111111;
    background: var(--primary-color);
}

.lang-select {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.94rem;
    outline: none;
}

.lang-select option {
    background: var(--white);
    color: var(--dark-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.14) 100%),
        url("https://images.unsplash.com/photo-1604014237800-1c9102c219da?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: var(--white);
    text-align: left;
    padding: 148px 20px 100px;
    border-bottom: 1px solid var(--line-color);
    min-height: 540px;
    display: flex;
    align-items: center;
}


.hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.02;
    max-width: 760px;
}

.hero p {
    font-size: 1.18rem;
    margin-bottom: 1.7rem;
    max-width: 640px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #101010;
    padding: 13px 26px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn:disabled {
    opacity: 0.68;
    cursor: wait;
    transform: none;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: 760px;
    margin-top: 2.2rem;
}

.hero-stats div {
    padding: 0.85rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-stats dt {
    color: var(--primary-color);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-stats dd {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.35;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
}

section {
    padding: 78px 20px;
}

section[id] {
    scroll-margin-top: 86px;
}

section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.15;
}

.about {
    background: rgba(255, 255, 255, 0.54);
    text-align: center;
    border-bottom: 1px solid var(--line-color);
}

.about p {
    font-size: 1.24rem;
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.7rem;
    margin-top: 2.55rem;
}

.card {
    background: var(--white);
    padding: 1.7rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line-color);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    color: inherit;
    text-decoration: none;
}

.card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.25;
}

.services {
    background: #f8f5ef;
    text-align: center;
    border-bottom: 1px solid var(--line-color);
}

.services .section-desc {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}


.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}

.slider-wrapper {
    overflow: hidden;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    gap: 1.5rem;
}

.slider-track .card {
    min-width: calc(50% - 0.75rem);
    margin: 0;
    flex-shrink: 0;
}

.services-slider,
.services-list {
    margin-top: 2rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.services-list .service-slide {
    grid-template-columns: 1fr;
}

.services-list .service-slide-media,
.services-list .service-slide-media img {
    min-height: 280px;
}

.services-list .service-slide-content {
    min-height: auto;
}

.service-slide {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    color: inherit;
    text-align: left;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-slide:hover,
.service-slide:focus-visible {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(200, 155, 60, 0.62);
    outline: none;
}

.service-slide-media {
    min-height: 430px;
    background: #171717;
    overflow: hidden;
}

.service-slide-media img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-slide:hover .service-slide-media img,
.service-slide:focus-visible .service-slide-media img {
    transform: scale(1.04);
}

.service-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 430px;
    padding: clamp(1.45rem, 4vw, 3rem);
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 0.72rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: #f4efe4;
    border: 1px solid #e5d8bd;
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.2;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 1.35rem;
}

.services .card p {
    color: var(--muted-color);
    max-width: 420px;
}

.service-slide h3 {
    color: var(--dark-color);
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.08;
    margin-bottom: 1rem;
}

.service-slide p {
    color: var(--muted-color);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 560px;
}

.service-feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.service-feature-list li {
    position: relative;
    min-height: 58px;
    padding: 0.72rem 0.78rem 0.72rem 1.95rem;
    border-radius: 8px;
    background: #fbf8f1;
    border: 1px solid rgba(200, 155, 60, 0.22);
    color: #3f3f3f;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.3;
}

.service-feature-list li::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 0.82rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
}

.service-hero {
    min-height: 485px;
}

.service-detail .grid {
    margin-top: 2rem;
}

.service-detail .card {
    text-align: left;
}

.service-use-cases {
    background: #ffffff;
    border-bottom: 1px solid var(--line-color);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.use-case-card {
    min-height: 245px;
    padding: 1.3rem;
    background: #ffffff;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.use-case-card:hover,
.use-case-card.is-active {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(200, 155, 60, 0.55);
}

.use-case-card[role="button"] {
    cursor: pointer;
}

.use-case-card:focus-visible {
    outline: 3px solid rgba(200, 155, 60, 0.35);
    outline-offset: 3px;
}

.use-case-card h3 {
    font-size: 1.18rem;
    line-height: 1.25;
    margin-bottom: 0.72rem;
    color: var(--dark-color);
}

.use-case-card p {
    color: var(--muted-color);
    line-height: 1.65;
}

.solution-essay-grid {
    display: block;
    margin-top: 1.45rem;
    text-align: left;
}

.solution-essay-card {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-height: 245px;
    padding: 1.35rem;
    background: #fbf8f1;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.solution-essay-card.is-active {
    display: flex;
}

.solution-essay-card h3 {
    color: var(--dark-color);
    font-size: 1.15rem;
    line-height: 1.28;
    margin-bottom: 0.75rem;
}

.solution-essay-card p {
    color: var(--muted-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.solution-essay-card .section-link {
    margin-top: auto;
}

.article-page {
    min-height: 78vh;
    padding: 145px 0 80px;
    background: #fbf8f1;
}

.article-shell { max-width: 900px; }
.article-content {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    background: #fff;
    border: 1px solid var(--line-color);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}
.article-kicker { color: var(--primary-color); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.article-content h1 { margin: .6rem 0 1.3rem; color: var(--dark-color); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.08; }
.article-lead { color: var(--muted-color); font-size: 1.14rem; line-height: 1.85; }
.article-lead h2 { margin: 2.4rem 0 .8rem; color: var(--dark-color); font-size: 1.75rem; line-height: 1.25; }
.article-lead h3 { margin: 1.55rem 0 .55rem; color: var(--dark-color); font-size: 1.25rem; line-height: 1.35; }
.article-lead p { margin: 0 0 1rem; }
.article-lead ul,
.article-lead ol { margin: .5rem 0 1.25rem; padding-left: 1.5rem; }
.article-lead li { margin-bottom: .35rem; }
.article-figure { margin: 2rem 0 2.4rem; }
.article-figure img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-soft); }
.article-figure figcaption { margin-top: .65rem; color: var(--muted-color); font-size: .92rem; line-height: 1.55; }
.article-note { margin-top: 2rem; padding: 1.5rem; border-left: 4px solid var(--primary-color); background: #fbf8f1; }
.article-note h2 { margin-bottom: .65rem; color: var(--dark-color); font-size: 1.35rem; }
.article-note p { color: var(--muted-color); line-height: 1.75; }
.article-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.article-actions .btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; }
.article-actions .btn-outline { color: var(--dark-color); background: #ffffff; border-color: rgba(200, 155, 60, .65); box-shadow: none; }
.article-actions .btn-outline:hover,
.article-actions .btn-outline:focus-visible { color: #111111; background: #f8f5ef; border-color: var(--primary-color); }

.products-page {
    background: #ffffff;
    text-align: center;
    padding-top: 138px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin: 0 auto 1.25rem;
    color: var(--muted-color);
    font-size: 0.9rem;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--primary-dark);
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
    color: var(--dark-color);
    text-decoration: underline;
    outline: none;
}

.product-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.35rem;
    padding: 0.35rem;
    border: 1px solid var(--line-color);
    border-radius: 999px;
    background: #f8f5ef;
}

.product-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 850;
    font-size: 0.92rem;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.product-tabs a:hover,
.product-tabs a:focus-visible,
.product-tabs a.active {
    background: var(--dark-color);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(23, 23, 23, 0.14);
    outline: none;
}

.product-category {
    margin-top: 2.55rem;
}

.product-category h3 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.product-gallery-grid {
    margin-top: 2rem;
}

.product-card {
    overflow: hidden;
    min-height: 215px;
    background: #ffffff;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(200, 155, 60, 0.55);
}

.product-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.15rem;
}

.product-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e9e2d5;
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-body {
    padding: 1.15rem;
}

.product-card h4 {
    font-size: 1.14rem;
    line-height: 1.25;
    margin-bottom: 0.7rem;
}

.product-card p {
    color: var(--muted-color);
    line-height: 1.65;
}

.product-detail-list {
    display: grid;
    gap: 0.55rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    color: #3f3f3f;
    font-size: 0.92rem;
    line-height: 1.45;
}

.product-detail-list li {
    position: relative;
    padding-left: 1.05rem;
}

.product-detail-list li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.product-choice {
    background: #ffffff;
    text-align: center;
    border-top: 1px solid var(--line-color);
}

.product-choice .section-desc {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.product-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.product-choice-card {
    min-height: 230px;
    padding: 1.45rem;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    background: #fbf8f1;
    color: inherit;
    text-align: left;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-choice-card:hover,
.product-choice-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(200, 155, 60, 0.62);
    box-shadow: var(--shadow-lift);
    outline: none;
}

.product-choice-card i {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #181818;
    color: var(--primary-color);
    font-size: 1.22rem;
}

.product-choice-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
    line-height: 1.25;
}

.product-choice-card p {
    color: var(--muted-color);
    line-height: 1.65;
}

.product-guide {
    background: #f8f5ef;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    text-align: center;
}

.category-faq {
    background: #ffffff;
    border-bottom: 1px solid var(--line-color);
    text-align: center;
}

.category-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.category-faq-grid article {
    min-height: 180px;
    padding: 1.35rem;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    background: #fbf8f1;
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.category-faq-grid h3 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-size: 1.18rem;
    line-height: 1.25;
}

.category-faq-grid p {
    color: var(--muted-color);
    line-height: 1.7;
}

.product-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.7rem;
}

.product-guide-grid div {
    padding: 1.2rem;
    background: #ffffff;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.product-guide-grid i {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.product-guide-grid h3 {
    font-size: 1.08rem;
    margin-bottom: 0.65rem;
}

.product-guide-grid p {
    color: var(--muted-color);
    line-height: 1.65;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.product-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.25rem 0.62rem;
    border-radius: 999px;
    background: #f4efe4;
    border: 1px solid #e5d8bd;
    color: #5f4518;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
}

.product-action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 800;
    margin-top: 1rem;
}

.product-action:hover {
    color: #111111;
}

.best-sellers {
    background: #f8f5ef;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 1.7rem;
}

.section-heading-row h2 {
    text-align: left;
    margin-bottom: 0.65rem;
}

.section-heading-row .section-desc {
    max-width: 620px;
    margin: 0;
    text-align: left;
}

.section-note {
    max-width: 620px;
    margin: 0.7rem 0 0;
    color: var(--primary-dark);
    font-weight: 800;
    line-height: 1.55;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.section-link:hover {
    color: #111111;
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.best-seller-card {
    display: flex;
    flex-direction: column;
}

.best-seller-card .product-media {
    position: relative;
}

.best-seller-card .product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.best-seller-card .product-tags {
    margin-bottom: 0.2rem;
}

.best-seller-card .product-action {
    margin-top: auto;
    padding-top: 1rem;
}

.best-seller-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.9);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
}

.cta-section {
    background: #171717;
    color: #ffffff;
    padding: 58px 20px;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.7rem;
}

.cta-panel h2 {
    text-align: left;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    margin-bottom: 0.7rem;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-end;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-top: 1.7rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(17, 17, 17, 0.88);
    color: var(--white);
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1rem;
    z-index: 10;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: #111111;
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
    left: 12px;
}

.slider-arrow.next {
    right: 12px;
}

.slider-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #d8d0bf;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .slider-track .card {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 576px) {
    .slider-track .card {
        min-width: 100%;
    }
    
    .slider-arrow {
        padding: 10px 15px;
    }
}

.gallery {
    background: #ffffff;
    text-align: center;
    border-bottom: 1px solid var(--line-color);
}


.section-desc {

    font-size: 1.1rem;

    margin-bottom: 1.7rem;

    color: var(--muted-color);

    font-weight: 600;

}

.gallery .slider-container {
    position: relative;
    margin-top: 1.7rem;
}

.gallery .slider-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.gallery .slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.gallery .gallery-item {
    flex: 0 0 calc(50% - 0.75rem);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    background: #111111;
    cursor: zoom-in;
}

.gallery .gallery-item:hover,
.gallery .gallery-item:focus-visible {
    transform: scale(1.03);
    border-color: rgba(200, 155, 60, 0.68);
    outline: none;
}

.gallery .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    width: fit-content;
    max-width: calc(100% - 28px);
    padding: 0.48rem 0.7rem;
    border-radius: 8px;
    background: rgba(17, 17, 17, 0.82);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
    backdrop-filter: blur(8px);
}

@media (max-width: 576px) {
    .gallery .gallery-item {
        flex: 0 0 100%;
    }
}

.gallery .slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.gallery .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.gallery .dot.active {
    background: var(--primary-color);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 5rem 5.5rem 4rem;
    background: rgba(8, 8, 8, 0.92);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-figure {
    margin: 0;
    max-width: min(1120px, 100%);
    max-height: 100%;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.gallery-lightbox img {
    max-width: 100%;
    max-height: calc(100vh - 170px);
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox figcaption {
    color: #ffffff;
    font-weight: 800;
    text-align: center;
    line-height: 1.35;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-arrow:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-arrow:focus-visible {
    background: var(--primary-color);
    color: #111111;
    outline: none;
}

.gallery-lightbox-close {
    top: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
}

.gallery-lightbox-arrow {
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    font-size: 1.15rem;
}

.gallery-lightbox-arrow:hover,
.gallery-lightbox-arrow:focus-visible {
    transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-arrow.prev {
    left: 24px;
}

.gallery-lightbox-arrow.next {
    right: 24px;
}

@media (max-width: 576px) {
    .gallery-lightbox {
        padding: 4.5rem 1rem 6rem;
    }

    .gallery-lightbox img {
        max-height: calc(100vh - 190px);
    }

    .gallery-lightbox-close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .gallery-lightbox-arrow {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .gallery-lightbox-arrow:hover,
    .gallery-lightbox-arrow:focus-visible {
        transform: scale(1.04);
    }

    .gallery-lightbox-arrow.prev {
        left: calc(50% - 62px);
    }

    .gallery-lightbox-arrow.next {
        right: calc(50% - 62px);
    }
}

.process {
    background: #ffffff;
    border-bottom: 1px solid var(--line-color);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
    text-align: left;
}

.process-step {
    position: relative;
    min-height: 198px;
    padding: 1.35rem;
    background: #ffffff;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.step-number {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 0.7rem;
    margin-bottom: 1.1rem;
    border-radius: 999px;
    background: #181818;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 0.8rem;
}

.process-step h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--muted-color);
}

.trust {
    background: #171717;
    color: #ffffff;
    border-bottom: 1px solid var(--line-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 1.7rem;
}

.trust h2 {
    color: #ffffff;
    text-align: left;
    max-width: 760px;
}

.trust p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    font-size: 1.08rem;
}

.trust-points {
    display: grid;
    gap: 0.8rem;
}

.trust-point {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-point i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--primary-color);
    color: #111111;
}

.trust-point span {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.projects {
    background: #f8f5ef;
    text-align: center;
    border-bottom: 1px solid var(--line-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.7rem;
}

.project-card {
    background: var(--white);
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-content {
    padding: 1.2rem;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: rgba(200, 155, 60, 0.16);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.84rem;
    margin-bottom: 0.9rem;
}

.project-card h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 0.65rem;
}

.project-card p {
    color: var(--muted-color);
    margin-bottom: 1rem;
}

.project-case-list {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1.15rem;
    padding: 0;
    list-style: none;
    color: #444444;
    font-size: 0.93rem;
    line-height: 1.45;
}

.project-case-list li {
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(200, 155, 60, 0.22);
    border-radius: 6px;
    background: #fbf8f1;
}

.project-case-list strong {
    color: var(--dark-color);
}

.project-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.project-card dt {
    color: var(--muted-color);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.project-card dd {
    margin: 0;
    color: var(--dark-color);
    font-weight: 700;
}

.references {
    background: #f8f5ef;
    text-align: center;
    border-bottom: 1px solid var(--line-color);
}


.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.7rem;
    margin-top: 1.7rem;
}

.references-grid.references-3x2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.references-slider {
    margin-top: 1.7rem;
}

.references-slider .slider-wrapper {
    overflow: hidden;
}

.references-slider .references-slide {
    flex: 0 0 100%;
    margin-top: 0;
    box-sizing: border-box;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 920px;
    margin: 2rem auto 0;
}

.proof-strip div {
    padding: 1.05rem;
    background: #ffffff;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.proof-strip strong,
.proof-strip span {
    display: block;
}

.proof-strip strong {
    color: var(--primary-dark);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.45rem;
}

.proof-strip span {
    color: var(--muted-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
    }

    .references-grid.references-3x2 {
        grid-template-columns: 1fr;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }
}

.reference-item {
    background: var(--white);
    display: flex;
    min-height: 190px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line-color);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(200, 155, 60, 0.55);
}

.reference-logo {
    width: min(190px, 100%);
    height: 78px;
    object-fit: contain;
    display: block;
}

.reference-item h3 {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.28;
    margin-bottom: 0;
}

.reference-item p {
    font-size: 0.9rem;
    color: #666;
}

.faq {
    background: #ffffff;
    text-align: center;
    border-bottom: 1px solid var(--line-color);
}

.faq-list {
    max-width: 860px;
    margin: 2rem auto 0;
    display: grid;
    gap: 1rem;
    text-align: left;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 1.05rem 1.3rem;
    font-weight: 800;
    color: var(--dark-color);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--primary-dark);
    font-size: 1.35rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 1.3rem 1.15rem;
    color: var(--muted-color);
}

.contact {
    background: #f8f5ef;
    border-bottom: 1px solid var(--line-color);
}

.contact .section-desc {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-proof {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 auto 1.7rem;
    max-width: 920px;
}

.contact-proof span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 42px;
    padding: 0.58rem 0.85rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line-color);
    color: var(--dark-color);
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(28, 23, 13, 0.06);
}

.contact-proof i {
    color: var(--primary-dark);
}


.contact-info {
    display: flex;
    justify-content: center;
    gap: 2.55rem;
    margin-bottom: 1.7rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 1.28rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line-color);
    min-width: 200px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}

.whatsapp-link {
    background: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    margin-top: 5px;
    display: inline-block;
    font-size: 0.9rem;
}

.whatsapp-link:hover {
    background: #128C7E;
    text-decoration: none;
}

.map-link {
    display: inline-flex;
    margin-top: 0.85rem;
}

.contact-item p {
    font-size: 1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--dark-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

form {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: var(--white);
    padding: 1.28rem;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.quote-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.quote-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 0.7rem;
    border-radius: 6px;
    background: #f8f5ef;
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
}

.form-section {
    display: grid;
    gap: 0.85rem;
}

.form-section h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1rem;
    text-align: left;
}

input, textarea, select {
    padding: 13px;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #ffffff;
    color: var(--dark-color);
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid rgba(200, 155, 60, 0.34);
    border-color: var(--primary-color);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.dot:focus-visible {
    outline: 3px solid rgba(200, 155, 60, 0.65);
    outline-offset: 3px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.form-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.form-actions .btn {
    width: 100%;
    justify-content: center;
}

.form-actions .btn-outline {
    color: var(--dark-color);
    border-color: rgba(200, 155, 60, 0.55);
    background: #ffffff;
}

.form-actions .btn-outline:hover,
.form-actions .btn-outline:focus-visible {
    color: #111111;
    background: #f8f5ef;
    border-color: var(--primary-color);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.form-status {
    min-height: 0;
    margin: 0;
    padding: 0;
    font-weight: 800;
    text-align: center;
    border-radius: 8px;
    transition: padding 0.2s ease, background 0.2s ease;
}

.form-status.success {
    color: #157347;
    background: #e8f5ee;
    border: 1px solid rgba(21, 115, 71, 0.18);
    padding: 0.9rem 1rem;
}

.form-status.error {
    color: #b42318;
    background: #fff1f0;
    border: 1px solid rgba(180, 35, 24, 0.18);
    padding: 0.9rem 1rem;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.floating-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
}

.floating-whatsapp i {
    font-size: 1.35rem;
}

.sticky-quote {
    position: fixed;
    right: 22px;
    bottom: 86px;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #111111;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.sticky-quote:hover {
    background: #d9ad4a;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.photo-quote-panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    max-width: 980px;
    margin: 0 auto 1.35rem;
    padding: 1rem;
    border: 1px solid rgba(200, 155, 60, 0.34);
    border-radius: 8px;
    background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.photo-quote-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #171717;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.photo-quote-panel h3 {
    margin: 0 0 0.25rem;
    font-size: 1.08rem;
    line-height: 1.25;
}

.photo-quote-panel p {
    margin: 0;
    color: var(--muted-color);
    line-height: 1.55;
}

.photo-quote-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.photo-quote-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line-color);
    color: #171717;
    background: #ffffff;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.photo-quote-actions a:first-child {
    border-color: #25D366;
    background: #25D366;
    color: #ffffff;
}

.mobile-quick-actions {
    display: none;
}

footer {
    background: #0f0f0f;
    color: var(--white);
    padding: 2.55rem 0 1.2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 1.7rem;
    align-items: start;
}

.footer-brand .logo-link {
    margin-bottom: 1rem;
}

.footer-brand p,
.footer-contact span {
    color: rgba(255, 255, 255, 0.72);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 1.7rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.66);
    text-align: center;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 20px;
        text-align: center;
        gap: 0.35rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-links a,
    .lang-select {
        justify-content: center;
        width: 100%;
        border-radius: 8px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        display: grid;
        min-width: 0;
        width: 100%;
        margin: 0.2rem 0 0.45rem;
        padding: 0.35rem;
        background: rgba(255, 255, 255, 0.06);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }

    .nav-dropdown-menu a {
        justify-content: center;
        min-height: 38px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.84rem;
    }

    .brand-name {
        display: none;
    }

    .hero {
        min-height: 485px;
        padding: 120px 20px 70px;
        text-align: left;
        background-position: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        margin-top: 1.55rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .contact-info {
        gap: 0.85rem;
    }

    .photo-quote-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .photo-quote-icon {
        margin: 0 auto;
    }

    .photo-quote-actions {
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .process-grid,
    .trust-grid,
    .use-case-grid,
    .solution-essay-grid {
        grid-template-columns: 1fr;
    }

    .trust h2 {
        text-align: center;
    }

    .trust p {
        text-align: center;
        margin: 0 auto;
    }

    .section-heading-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-choice-grid {
        grid-template-columns: 1fr;
    }

    .category-faq-grid {
        grid-template-columns: 1fr;
    }

    .product-guide-grid,
    .quote-steps {
        grid-template-columns: 1fr;
    }

    .best-sellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-slide {
        grid-template-columns: 1fr;
    }

    .service-slide-media,
    .service-slide-media img {
        min-height: 280px;
    }

    .service-slide-content {
        min-height: auto;
    }

    .service-feature-list {
        grid-template-columns: 1fr;
    }

    .cta-panel h2 {
        text-align: center;
    }

    .cta-panel p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-actions {
        justify-content: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        min-height: 48px;
        padding: 0 14px;
    }

    .sticky-quote {
        right: 14px;
        bottom: 76px;
        min-height: 46px;
        padding: 0 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 901px) and (max-width: 1120px) {
    .nav-links {
        gap: 0.15rem;
    }

    .nav-links a {
        padding: 0 0.58rem;
        font-size: 0.88rem;
    }

    .projects-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    section[id] {
        scroll-margin-top: 74px;
    }

    .products-page {
        padding-top: 118px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        width: 100%;
        border-radius: 8px;
    }

    .product-tabs a {
        flex: 1 1 100%;
        border-radius: 8px;
    }

    .best-sellers-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .service-slide-media,
    .service-slide-media img {
        min-height: 220px;
    }

    .service-slide-content {
        padding: 1.25rem;
    }

    .service-slide h3 {
        font-size: 1.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .photo-quote-actions a {
        width: 100%;
        border-radius: 8px;
        white-space: normal;
        text-align: center;
    }

    body {
        padding-bottom: 74px;
    }

    .contact-proof {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }

    .contact-proof span {
        justify-content: flex-start;
        width: 100%;
    }

    .floating-whatsapp {
        display: none;
    }

    .sticky-quote {
        display: none;
    }

    .mobile-quick-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1002;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
        padding: 0.72rem;
        background: rgba(15, 15, 15, 0.96);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.24);
    }

    .mobile-quick-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 48px;
        border-radius: 8px;
        background: var(--primary-color);
        color: #111111;
        text-decoration: none;
        font-weight: 900;
    }

    .mobile-quick-actions a:last-child {
        background: #25D366;
        color: #ffffff;
    }

    .process-step {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* Search-focused introductory copy on product catalog pages. */
.products-page h1 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
}

.product-page-intro {
  width: min(900px, 100%);
  margin: 0 auto 28px;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.75;
}

.product-page-intro p {
  margin: 0 0 12px;
}

.product-page-intro a {
  color: #9b2c2c;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
