/* ============================================
   MoldAcoperis - Main Stylesheet
   Colors: Dark #1A1A2E, Orange #E8611A, White #FFFFFF
   Font: Montserrat
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #1A1A2E;
    --color-dark-light: #22223A;
    --color-orange: #E8611A;
    --color-orange-dark: #D05516;
    --color-orange-light: #FF7A33;
    --color-white: #FFFFFF;
    --color-gray-100: #F7F7F9;
    --color-gray-200: #E8E8ED;
    --color-gray-400: #9999A8;
    --color-gray-600: #555566;
    --color-gray-800: #33334D;
    --font-primary: 'Montserrat', sans-serif;
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --ma-viewport-height: 100vh;
    color-scheme: only light;
}

html {
    scroll-behavior: smooth;
    color-scheme: only light;
}

/* Prevent browser/extension forced dark filters from altering brand images */
.header,
.hero__brand-mark,
.header__logo-img,
.hero__brand-logo {
    forced-color-adjust: none;
}

.header img,
.hero__brand-block img {
    -webkit-filter: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .header {
    z-index: 1800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.btn--primary:hover {
    background-color: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 97, 26, 0.4);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.btn--white {
    background-color: var(--color-white);
    color: var(--color-orange);
    border-color: var(--color-white);
}

.btn--white:hover {
    background-color: var(--color-gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn--outline-dark {
    background-color: transparent;
    color: var(--color-dark);
    border-color: rgba(26, 26, 46, 0.18);
}

.btn--outline-dark:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header__tag {
    display: inline-block;
    background-color: rgba(232, 97, 26, 0.1);
    color: var(--color-orange);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header__title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header__title--left {
    text-align: left;
}

.section-header__desc {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.text-accent {
    color: var(--color-orange);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition);
    will-change: transform;
}

.header--scrolled {
    box-shadow: var(--shadow-md);
}

.header--hidden {
    transform: translateY(-100%);
}

.header--scrolled .header__top-bar {
    display: none;
}

.header__top-bar {
    background-color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--color-gray-200);
    padding: 8px 0;
    font-size: 0.85rem;
    transition: all var(--transition);
}

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

.header__top-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header__top-link {
    color: var(--color-gray-800);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header__top-link:hover {
    color: var(--color-orange);
}

.header__top-link i {
    color: var(--color-orange);
    font-size: 0.8rem;
}

.header__top-social {
    display: flex;
    gap: 12px;
}

.header__top-social a {
    color: var(--color-gray-800);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.header__top-social a:hover {
    color: var(--color-orange);
}

.header__nav {
    background-color: var(--color-white);
    padding: 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.header__nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header__logo-img {
    height: 55px;
    width: auto;
}

.header__menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header__menu-link {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: width var(--transition);
}

.header__menu-link:hover,
.header__menu-link.active {
    color: var(--color-orange);
}

.header__menu-link:hover::after,
.header__menu-link.active::after {
    width: 60%;
}

/* --- Dropdown --- */
.header__dropdown {
    position: relative;
}

.header__dropdown > .header__menu-link::after {
    display: none;
}

.header__dropdown > .header__menu-link:hover,
.header__dropdown > .header__menu-link.active,
.header__dropdown.open > .header__menu-link {
    color: var(--color-dark);
}

.header__dropdown > .header__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header__menu-link-main {
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
    padding-right: 20px;
}

.header__new-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    padding: 3px 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a1a, #ffc15c);
    color: #fffdf8;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transform: rotate(8deg);
    box-shadow: 0 0 0 1px rgba(255, 179, 103, 0.34), 0 0 16px rgba(255, 122, 26, 0.48);
    animation: navNewBadgeGlow 1.9s ease-in-out infinite;
}

.header__menu-link-main > .header__new-badge {
    position: absolute;
    top: -0.72em;
    right: -0.05em;
}

.header__new-badge--dropdown {
    position: absolute;
    margin-left: 0;
    top: -0.95em;
    right: -1.5em;
    min-height: 17px;
    padding: 3px 6px;
    font-size: 0.58rem;
    transform: rotate(2deg);
    animation: navNewBadgeGlowDropdown 1.9s ease-in-out infinite;
}

.header__dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 4px;
    transition: transform var(--transition);
}

.header__dropdown:hover .header__dropdown-arrow {
    transform: rotate(180deg);
}

.header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}

.header__dropdown:hover .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__dropdown-menu li {
    margin: 0;
}

.header__dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-600);
    transition: all 0.2s ease;
}

.header__dropdown-label {
    position: relative;
    min-width: 0;
}

.header__dropdown-label--tagged {
    display: inline-block;
    padding-right: 18px;
}

.header__dropdown-label--tagged-ru {
    display: inline-block;
    padding-right: 0.15em;
}

.header__new-badge--dropdown-ru {
    position: absolute;
    top: -0.78em;
    right: -0.18em;
    margin-left: 0;
}

.header__dropdown-menu a:hover {
    background: rgba(232, 97, 26, 0.06);
    color: var(--color-orange);
    padding-left: 26px;
}

.header__dropdown-menu a.active {
    color: var(--color-orange);
    font-weight: 700;
    padding-left: 26px;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

@keyframes navNewBadgeGlow {
    0%,
    100% {
        transform: rotate(8deg) scale(1);
        box-shadow: 0 0 0 1px rgba(255, 179, 103, 0.34), 0 0 12px rgba(255, 122, 26, 0.38);
    }

    50% {
        transform: rotate(8deg) scale(1.06);
        box-shadow: 0 0 0 1px rgba(255, 206, 128, 0.5), 0 0 22px rgba(255, 122, 26, 0.68);
    }
}

@keyframes navNewBadgeGlowDropdown {
    0%,
    100% {
        transform: rotate(2deg) scale(1);
        box-shadow: 0 0 0 1px rgba(255, 179, 103, 0.34), 0 0 12px rgba(255, 122, 26, 0.38);
    }

    50% {
        transform: rotate(2deg) scale(1.05);
        box-shadow: 0 0 0 1px rgba(255, 206, 128, 0.5), 0 0 22px rgba(255, 122, 26, 0.68);
    }
}

.header__cta {
    font-size: 0.9rem;
}

.header__lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-200);
}

.header__lang-link {
    min-width: 40px;
    padding: 7px 10px;
    border-radius: 999px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-gray-600);
    text-transform: uppercase;
}

.header__lang-link:hover,
.header__lang-link.active {
    background: var(--color-white);
    color: var(--color-orange);
    box-shadow: var(--shadow-sm);
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__burger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.38) 0%, rgba(26, 26, 46, 0.3) 50%, rgba(42, 26, 14, 0.38) 100%);
    padding-top: 130px;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(110deg, rgba(10, 14, 25, 0.26) 0%, rgba(10, 14, 25, 0.08) 48%, rgba(10, 14, 25, 0.22) 100%);
    pointer-events: none;
}

.hero__picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    pointer-events: none;
}

.hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    background: #111827;
    opacity: 0;
    transition: opacity 0.45s ease;
    will-change: opacity;
}

.hero.hero--video-ready .hero__video {
    opacity: 1;
}

.hero.hero--static .hero__video {
    display: none;
}

.hero::before {
    content: none;
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(232, 97, 26, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: none;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, transparent 28%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 120px);
    mix-blend-mode: screen;
    opacity: 0.45;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 40px 0 80px;
}

.hero__brand-block {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding: 14px 20px 14px 14px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    animation: heroBrandIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero__brand-mark {
    position: relative;
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 18px 28px rgba(232, 97, 26, 0.2);
    overflow: hidden;
}

.hero__brand-mark::before {
    content: '';
    position: absolute;
    inset: -35%;
    background: conic-gradient(from 180deg, transparent 0deg, rgba(232, 97, 26, 0.36) 70deg, transparent 160deg, transparent 360deg);
    animation: heroBrandSpin 8s linear infinite;
}

.hero__brand-mark::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 21px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
}

.hero__brand-logo {
    position: relative;
    z-index: 1;
    height: 48px;
    width: auto;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.12));
}

.hero__brand-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero__brand-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.hero__brand-label::before,
.hero__brand-label::after {
    content: '';
    flex: 0 0 34px;
    width: 34px;
    height: 1px;
}

.hero__brand-label::before {
    background: linear-gradient(90deg, rgba(232, 97, 26, 0.9), rgba(232, 97, 26, 0));
}

.hero__brand-label::after {
    background: linear-gradient(90deg, rgba(232, 97, 26, 0), rgba(232, 97, 26, 0.9));
}

.hero__brand-name {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #ffd7be 45%, #ff8f57 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 12px 30px rgba(232, 97, 26, 0.18);
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 10ch;
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.75s ease 0.35s forwards;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.75s ease 0.5s forwards;
}

.hero__copy,
.hero__engage {
    display: block;
}

.hero__qualities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero__quality {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
    opacity: 0;
    transform: translateY(18px);
    animation: heroChipIn 0.55s ease forwards;
}

.hero__quality i {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(232, 97, 26, 0.18);
    color: #ffb58c;
    font-size: 0.72rem;
}

.hero__quality:nth-child(1) {
    animation-delay: 0.62s;
}

.hero__quality:nth-child(2) {
    animation-delay: 0.72s;
}

.hero__quality:nth-child(3) {
    animation-delay: 0.82s;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.75s ease 0.9s forwards;
}

.hero__stats {
    display: flex;
    gap: 48px;
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.75s ease 1.05s forwards;
}

.hero__stat {
    text-align: center;
    color: var(--color-white);
}

.hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1;
}

.hero__stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray-400);
    margin-top: 6px;
    font-weight: 500;
}

@keyframes heroBrandIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroChipIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroBrandSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background-color: var(--color-gray-100);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 97, 26, 0.15);
}

.service-card__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(145deg, #f7efe9 0%, #f3f3f8 100%);
    border: 1px solid var(--color-gray-200);
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card__media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-gray-400);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.38)),
        repeating-linear-gradient(135deg, rgba(232, 97, 26, 0.06) 0, rgba(232, 97, 26, 0.06) 16px, rgba(255, 255, 255, 0) 16px, rgba(255, 255, 255, 0) 32px);
}

.service-card__media-placeholder i {
    font-size: 2rem;
    color: var(--color-orange);
}

.service-card__media-placeholder span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-orange);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.service-card__link:hover {
    gap: 12px;
}

/* ============================================
   LUCRARI EXECUTATE (WORKS PORTFOLIO)
   ============================================ */
.works {
    padding: 100px 0;
    background-color: var(--color-white);
}

.works__filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.works__filter {
    padding: 10px 24px;
    border: 2px solid var(--color-gray-200);
    border-radius: 50px;
    background: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all var(--transition);
}

.works__filter:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.works__filter--active {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
}

.works__filter--active:hover {
    background: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
    color: var(--color-white);
}

.works__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.works__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--color-white);
    transition: all 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    border: 1px solid var(--color-gray-200);
}

.works__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.works__item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

.works__img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-gray-100);
}

.works__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.works__item:hover .works__img img {
    transform: scale(1.08);
}

.works__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.works__item:hover .works__overlay {
    opacity: 1;
}

.works__category {
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.works__info {
    padding: 20px;
}

.works__info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.works__info p {
    font-size: 0.88rem;
    color: var(--color-gray-400);
}

.works__more {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 1024px) {
    .works__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .works {
        padding: 60px 0;
    }

    .works__filters {
        gap: 8px;
        margin-bottom: 32px;
    }

    .works__filter {
        padding: 8px 18px;
        font-size: 0.82rem;
    }

    .works__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 100px 0;
    background-color: var(--color-white);
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us__desc {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 36px;
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.why-us__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-us__feature > i {
    font-size: 1.3rem;
    color: var(--color-orange);
    margin-top: 2px;
    flex-shrink: 0;
}

.why-us__feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.why-us__feature p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.why-us__image {
    position: relative;
}

.why-us__image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-light));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--color-gray-400);
    overflow: hidden;
}

.why-us__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.why-us__image-placeholder i {
    font-size: 4rem;
    color: var(--color-orange);
}

.why-us__image-placeholder span {
    font-size: 0.9rem;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: 100px 0;
    background-color: var(--color-dark);
    --process-step-number-size: 80px;
    --process-step-card-pad-top: 0px;
    --process-step-gap: 30px;
    --process-step-line-inset: calc((100% - (3 * var(--process-step-gap))) / 8);
}

.process .section-header__tag {
    background-color: rgba(232, 97, 26, 0.15);
}

.process .section-header__title {
    color: var(--color-white);
}

.process .section-header__desc {
    color: var(--color-gray-400);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--process-step-gap);
    position: relative;
}

.process__steps::before {
    content: '';
    position: absolute;
    top: calc(var(--process-step-card-pad-top) + (var(--process-step-number-size) / 2));
    left: var(--process-step-line-inset);
    right: var(--process-step-line-inset);
    height: 2px;
    background: linear-gradient(90deg, var(--color-orange), rgba(232, 97, 26, 0.2));
    pointer-events: none;
}

.process__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process__step-number {
    width: var(--process-step-number-size);
    height: var(--process-step-number-size);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(232, 97, 26, 0.3);
}

.process__step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.process__step-desc {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background-color: var(--color-gray-100);
}

.testimonials__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
    padding: 28px 32px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98), rgba(34, 34, 58, 0.94));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.testimonials__summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    row-gap: 6px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.testimonials__summary-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.testimonials__summary-separator {
    line-height: 1;
    font-weight: 700;
    opacity: 0.75;
}

.testimonials__summary-platform i {
    color: #F5A623;
}

.testimonials__summary-platform .fa-facebook-f {
    color: #8cb4ff;
}

.testimonials__summary-score {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}

.testimonials__summary-score strong {
    font-size: 2.6rem;
    line-height: 1;
}

.testimonials__summary-stars {
    margin-bottom: 0;
}

.testimonials__summary-meta {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.testimonials__summary-meta i {
    color: #F5A623;
    margin-right: 6px;
}

.testimonials__summary-meta .fa-facebook-f {
    color: #8cb4ff;
    margin-left: 8px;
}

.testimonials__summary-link[aria-disabled="true"] {
    opacity: 0.55;
    pointer-events: none;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonials__viewport {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
}

.testimonials__grid--ticker {
    display: block;
    position: relative;
}

.testimonials__ticker-track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    width: max-content;
    will-change: transform;
    animation: productLinksRolling 38s linear infinite reverse;
}

.testimonials__viewport:hover .testimonials__ticker-track {
    animation-play-state: paused;
}

.testimonials__grid--ticker .testimonial-card {
    width: min(340px, 80vw);
    flex: 0 0 min(340px, 80vw);
    margin: 0;
}

.testimonial-card {
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card__stars i {
    color: #F5A623;
    font-size: 1rem;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--color-gray-400);
}

.testimonial-card__source {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.testimonial-card__source .fa-facebook-f {
    color: #1877f2;
}

.testimonials__empty {
    grid-column: 1 / -1;
    padding: 28px 32px;
    border: 1px dashed rgba(232, 97, 26, 0.35);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-gray-600);
    text-align: center;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-banner__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-white);
    padding: 80px 0 0;
    border-top: 1px solid var(--color-gray-200);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--color-gray-200);
}

.footer__logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer__about {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-gray-100);
    border: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-800);
    transition: all var(--transition);
}

.footer__social a:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.footer__heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    transition: all var(--transition);
}

.footer__links a.active {
    color: var(--color-orange);
    font-weight: 600;
    padding-left: 4px;
}

.footer__links a:hover {
    color: var(--color-orange);
    padding-left: 4px;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

.footer__contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray-600);
}

/* ============================================
   HOMEPAGE LIGHT GRADIENT THEME
   ============================================ */
.homepage {
    --homepage-premium-bg: #f5f1ea;
    --homepage-premium-surface: rgba(255, 253, 250, 0.88);
    --homepage-premium-surface-strong: rgba(255, 255, 255, 0.94);
    --homepage-premium-soft: #f8f4ee;
    --homepage-premium-ink: #171d28;
    --homepage-premium-ink-soft: #4f596a;
    --homepage-premium-line: rgba(23, 29, 40, 0.1);
    --homepage-premium-accent: #c56e2d;
    --homepage-premium-accent-deep: #974a19;
    --homepage-premium-shadow: 0 24px 60px rgba(17, 24, 39, 0.1);
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.08), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(197, 110, 45, 0.05), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, var(--homepage-premium-bg) 100%);
    background-attachment: scroll;
    color: var(--homepage-premium-ink);
}

.homepage .hero {
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 248, 242, 0.1) 46%, rgba(255, 216, 195, 0.2) 100%);
}

.homepage .hero__overlay {
    background:
        linear-gradient(110deg, rgba(10, 14, 25, 0.3) 0%, rgba(10, 14, 25, 0.12) 48%, rgba(10, 14, 25, 0.04) 100%),
        linear-gradient(180deg, rgba(10, 14, 25, 0.02) 0%, rgba(10, 14, 25, 0.52) 100%);
}

.homepage .hero::before {
    top: -32%;
    right: -10%;
    width: 62%;
    height: 165%;
    background: radial-gradient(ellipse, rgba(232, 97, 26, 0.18) 0%, rgba(232, 97, 26, 0.04) 42%, transparent 74%);
}

.homepage .hero::after {
    background:
        linear-gradient(125deg, rgba(232, 97, 26, 0.08) 0%, transparent 24%),
        repeating-linear-gradient(90deg, rgba(232, 97, 26, 0.04) 0, rgba(232, 97, 26, 0.04) 1px, transparent 1px, transparent 120px);
    mix-blend-mode: multiply;
    opacity: 0.45;
}

.homepage .hero__brand-block {
    min-width: min(100%, 590px);
    gap: 26px;
    padding: 18px 36px 18px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(8, 12, 22, 0.76), rgba(19, 24, 38, 0.56));
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.homepage .hero__brand-copy {
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
    text-align: center;
}

.homepage .hero__brand-mark {
    flex: 0 0 128px;
    width: 128px;
    height: 92px;
    border-radius: 28px;
}

.homepage .hero__brand-mark::after {
    border-radius: 27px;
}

.homepage .hero__brand-logo {
    width: 106px;
    height: auto;
    max-height: 72px;
}

.homepage .hero__brand-label {
    justify-content: center;
    color: rgba(255, 251, 246, 0.96);
    font-size: clamp(0.82rem, 0.76rem + 0.25vw, 0.92rem);
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.35;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.46);
    width: 100%;
}

.homepage .hero__brand-label::before,
.homepage .hero__brand-label::after {
    flex-basis: 30px;
    width: 30px;
    filter: drop-shadow(0 0 8px rgba(232, 97, 26, 0.18));
}

.homepage .hero__brand-label::before {
    background: linear-gradient(90deg, rgba(255, 170, 116, 0.96), rgba(232, 97, 26, 0));
}

.homepage .hero__brand-label::after {
    background: linear-gradient(90deg, rgba(232, 97, 26, 0), rgba(255, 170, 116, 0.96));
}

.homepage .hero__brand-name {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: var(--color-white);
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.homepage .hero__title,
.homepage .hero__stat,
.homepage .hero .btn--outline {
    color: var(--color-white);
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
}

.homepage .hero__subtitle,
.homepage .hero__stat-label {
    color: #ffffff;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.52);
}

.homepage .hero__stat-number {
    color: #ffffff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.56);
}

.homepage .hero__stat-label {
    font-weight: 600;
}

.homepage .hero__quality {
    background: rgba(10, 14, 25, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--color-white);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.homepage .hero__quality i {
    background: rgba(232, 97, 26, 0.24);
    color: #ffd2b4;
}

.homepage .hero .btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(10, 14, 25, 0.34);
}

.homepage .hero .btn--outline:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

.homepage .cfg {
    background: transparent;
}

.homepage .cfg::after {
    background: rgba(232, 97, 26, 0.08);
}

.homepage .cfg .section-header__tag,
.homepage .services .section-header__tag,
.homepage .works .section-header__tag,
.homepage .why-us .section-header__tag,
.homepage .process .section-header__tag,
.homepage .testimonials .section-header__tag {
    background: rgba(197, 110, 45, 0.12);
    color: var(--homepage-premium-accent-deep);
    border: 1px solid rgba(197, 110, 45, 0.14);
}

.homepage .cfg .section-header__title,
.homepage .services .section-header__title,
.homepage .works .section-header__title,
.homepage .why-us .section-header__title,
.homepage .process .section-header__title,
.homepage .testimonials .section-header__title {
    color: var(--homepage-premium-ink);
}

.homepage .cfg .section-header__desc,
.homepage .services .section-header__desc,
.homepage .works .section-header__desc,
.homepage .process .section-header__desc,
.homepage .testimonials .section-header__desc {
    color: var(--homepage-premium-ink-soft);
}

.homepage .cfg .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 840px;
    position: relative;
    gap: 4px;
    margin-bottom: 34px;
    text-align: center;
}

.homepage .cfg .section-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 0;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(197, 110, 45, 0.2), rgba(197, 110, 45, 0.09));
    border: 1px solid rgba(197, 110, 45, 0.28);
    box-shadow: 0 12px 30px rgba(197, 110, 45, 0.16);
    color: var(--homepage-premium-accent-deep);
    font-size: clamp(1.08rem, 1rem + 0.28vw, 1.22rem);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.homepage .cfg .section-header__tag::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--homepage-premium-accent-deep);
    box-shadow: 0 0 0 6px rgba(197, 110, 45, 0.14);
    content: "";
}

.homepage .cfg .section-header__title {
    max-width: 12ch;
    margin: 0 auto;
    font-size: clamp(2.85rem, 2.25rem + 1.65vw, 4.15rem);
    line-height: 0.98;
}

.homepage .cfg .section-header__title::after {
    display: none;
}

.homepage .cfg .cfg__headline-desc {
    max-width: 760px;
    margin: 0 auto;
    padding: 14px 24px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 241, 0.94));
    border: 1px solid rgba(197, 110, 45, 0.28);
    border-left: 5px solid var(--homepage-premium-accent-deep);
    box-shadow: 0 20px 48px rgba(17, 24, 39, 0.1);
    color: var(--homepage-premium-ink);
    font-size: clamp(1.28rem, 1.12rem + 0.55vw, 1.58rem);
    font-weight: 800;
    line-height: 1.28;
}

.homepage .cfg .cfg__headline-desc strong {
    color: var(--homepage-premium-accent-deep);
    font-weight: 900;
}

.homepage .cfg .section-header__title,
.homepage .cfg__intro-card strong {
    color: var(--homepage-premium-ink);
}

@media (max-width: 768px) {
    .homepage .cfg .section-header {
        gap: 6px;
        margin-bottom: 32px;
    }

    .homepage .cfg .section-header__tag {
        margin: 0;
        padding: 12px 16px;
        font-size: 0.96rem;
    }

    .homepage .cfg .section-header__title {
        max-width: none;
        font-size: clamp(2.2rem, 1.9rem + 1.6vw, 2.85rem);
    }

    .homepage .cfg .cfg__headline-desc {
        max-width: none;
        padding: 16px 17px;
        font-size: 1.16rem;
        line-height: 1.3;
    }
}

.homepage .cfg__intro-card {
    background: rgba(255, 253, 250, 0.96);
    border: 1px solid rgba(197, 110, 45, 0.12);
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.06);
}

.homepage .cfg__intro-card span {
    color: var(--homepage-premium-ink-soft);
}

.homepage .cfg__canvas-wrap {
    border: 1px solid rgba(197, 110, 45, 0.14);
    box-shadow: var(--homepage-premium-shadow);
}

.homepage .cfg__canvas-badges span,
.homepage .cfg__canvas-caption,
.homepage .cfg__panel-section {
    background: var(--homepage-premium-surface-strong);
    border-color: rgba(197, 110, 45, 0.12);
}

.homepage .cfg__panel-section {
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.homepage .cfg__panel {
    position: sticky;
    top: 24px;
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding-right: 4px;
    gap: 14px;
}

.homepage .cfg__panel::-webkit-scrollbar {
    width: 8px;
}

.homepage .cfg__panel::-webkit-scrollbar-thumb {
    background: rgba(180, 77, 31, 0.18);
    border-radius: 999px;
}

.homepage .cfg__panel-section {
    padding: 16px 18px;
    border-radius: 20px;
}

@media (min-width: 769px) {
    .homepage .cfg__panel-section {
        transition:
            transform 0.32s ease,
            border-color 0.32s ease,
            box-shadow 0.32s ease,
            background-color 0.32s ease;
    }

    .homepage .cfg__panel-section.is-transition-target {
        transform: translateY(-3px);
        border-color: rgba(197, 110, 45, 0.4);
        box-shadow: 0 24px 54px rgba(17, 24, 39, 0.12), 0 0 0 1px rgba(197, 110, 45, 0.12);
    }

    .homepage .cfg__panel-section.is-transition-target .cfg__panel-body {
        animation: cfgDesktopPanelBodyIn 0.36s ease both;
    }

    .homepage .cfg__panel-section.is-dims-settling {
        border-color: rgba(197, 110, 45, 0.34);
        box-shadow: 0 20px 48px rgba(17, 24, 39, 0.1), 0 0 0 1px rgba(197, 110, 45, 0.08);
    }
}

@keyframes cfgDesktopPanelBodyIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.homepage .cfg__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.homepage .cfg__panel-heading {
    min-width: 0;
    flex: 1;
}

.homepage .cfg__panel-title {
    margin-bottom: 4px;
    font-size: 1rem;
}

.homepage .cfg__panel-summary {
    margin: 0;
    color: var(--homepage-premium-ink-soft);
    font-size: 0.78rem;
    line-height: 1.45;
}

.homepage .cfg__panel-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.homepage .cfg__panel-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(44, 62, 80, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--homepage-premium-ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: none;
}

.homepage .cfg__panel-toggle:hover {
    border-color: rgba(180, 77, 31, 0.28);
    box-shadow: 0 10px 22px rgba(31, 41, 51, 0.08);
}

.homepage .cfg__panel-toggle i {
    transition: none;
}

.homepage .cfg__panel-body {
    display: grid;
    gap: 12px;
}

.homepage .cfg__panel-section.is-collapsed .cfg__panel-head {
    margin-bottom: 0;
}

.homepage .cfg__panel-section.is-collapsed .cfg__panel-body {
    display: none;
}

.homepage .cfg__panel-section.is-collapsed .cfg__panel-toggle i {
    transform: rotate(-90deg);
}

.homepage .cfg__panel-section.is-collapsed .cfg-test-reset,
.homepage .cfg__panel-section.is-collapsed .cfg-test-next {
    display: none;
}

.homepage .cfg__house-types,
.homepage .cfg__colors {
    gap: 8px;
}

.homepage .cfg__house-type-btn,
.homepage .cfg__color-btn {
    gap: 10px;
    padding: 10px 12px;
}

.homepage .cfg__house-type-btn {
    min-height: 74px;
}

.homepage .cfg__house-type-btn i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.92rem;
}

.homepage .cfg__house-type-btn strong,
.homepage .cfg__color-info strong {
    font-size: 0.84rem;
}

.homepage .cfg__house-type-btn small,
.homepage .cfg__color-info small {
    font-size: 0.73rem;
    line-height: 1.35;
}

.homepage .cfg__color-swatch {
    width: 28px;
    height: 28px;
}

.homepage .cfg-test-dim-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.homepage .cfg-test-reset,
.homepage .cfg-test-next {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(44, 62, 80, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: var(--homepage-premium-ink);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.homepage .cfg-test-next {
    border-color: rgba(197, 110, 45, 0.36);
    background: linear-gradient(135deg, #171d28, #2b3341);
    color: var(--color-white);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.14);
}

.homepage .cfg-test-reset:hover,
.homepage .cfg-test-next:hover {
    transform: translateY(-1px);
    border-color: rgba(180, 77, 31, 0.28);
    box-shadow: 0 12px 24px rgba(31, 41, 51, 0.08);
}

.homepage .cfg-test-next:hover {
    border-color: rgba(197, 110, 45, 0.48);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
}

.homepage .cfg-test-dim-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.homepage .cfg-test-dim-field {
    display: grid;
    gap: 8px;
    padding: 12px 12px 10px;
    border-radius: 18px;
    border: 1px solid rgba(44, 62, 80, 0.08);
    background: rgba(245, 247, 250, 0.85);
}

.homepage .cfg-test-dim-field.is-hidden {
    display: none;
}

.homepage .cfg-test-dim-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--homepage-premium-ink);
}

.homepage .cfg-test-dim-value {
    color: var(--homepage-premium-accent);
    font-size: 0.88rem;
}

.homepage .cfg-test-dim-field small,
.homepage .cfg-test-dim-note {
    color: var(--homepage-premium-ink-soft);
    font-size: 0.73rem;
    line-height: 1.45;
}

.homepage .cfg-test-dim-range {
    width: 100%;
    accent-color: var(--homepage-premium-accent);
}

.homepage .cfg-test-dim-note {
    margin: 0;
}

.homepage .cfg-test-next-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.homepage .cfg-test-next--footer {
    min-width: 220px;
    justify-content: center;
}

.homepage .cfg__offers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
}

.homepage .cfg__mobile-steps {
    display: none;
}

.homepage .cfg__offer-card {
    position: relative;
    display: grid;
    gap: 9px;
    padding: 14px 14px 12px;
    border-radius: 18px;
    border: 1px solid rgba(180, 155, 124, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 254, 251, 0.98) 0%, rgba(248, 243, 236, 0.96) 100%);
    box-shadow:
        0 14px 28px rgba(31, 41, 51, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.homepage .cfg__offer-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(180, 77, 31, 0.85), rgba(217, 164, 91, 0.75));
}

.homepage .cfg__offer-card--vip {
    border-color: rgba(191, 145, 58, 0.3);
    background:
        radial-gradient(circle at top right, rgba(214, 180, 92, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 252, 245, 0.99) 0%, rgba(247, 238, 216, 0.97) 100%);
    box-shadow:
        0 16px 32px rgba(173, 133, 49, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.homepage .cfg__offer-card--premium {
    border-color: rgba(160, 168, 178, 0.28);
    background:
        radial-gradient(circle at top right, rgba(213, 219, 225, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(251, 252, 253, 0.99) 0%, rgba(235, 239, 243, 0.97) 100%);
    box-shadow:
        0 16px 30px rgba(124, 136, 149, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.homepage .cfg__offer-card--standart {
    border-color: rgba(136, 94, 58, 0.24);
    background:
        radial-gradient(circle at top right, rgba(170, 124, 90, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(251, 246, 241, 0.98) 0%, rgba(239, 228, 220, 0.96) 100%);
    box-shadow:
        0 15px 28px rgba(114, 77, 50, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.homepage .cfg__offer-card--vip::before {
    background: linear-gradient(90deg, rgba(181, 138, 42, 0.95), rgba(228, 197, 110, 0.82));
}

.homepage .cfg__offer-card--premium::before {
    background: linear-gradient(90deg, rgba(131, 142, 154, 0.95), rgba(214, 221, 228, 0.88));
}

.homepage .cfg__offer-card--standart::before {
    background: linear-gradient(90deg, rgba(124, 77, 47, 0.95), rgba(182, 133, 92, 0.84));
}

.homepage .cfg__offer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.homepage .cfg__offer-head strong {
    color: var(--homepage-premium-ink);
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

.homepage .cfg__offer-head span {
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    border: 1px solid transparent;
}

.homepage .cfg__offer-card--vip .cfg__offer-head span {
    background: rgba(191, 145, 58, 0.12);
    color: #8c661b;
    border-color: rgba(191, 145, 58, 0.18);
}

.homepage .cfg__offer-card--premium .cfg__offer-head span {
    background: rgba(150, 160, 170, 0.12);
    color: #68727d;
    border-color: rgba(150, 160, 170, 0.18);
}

.homepage .cfg__offer-card--standart .cfg__offer-head span {
    background: rgba(147, 99, 64, 0.12);
    color: #7a4b2e;
    border-color: rgba(147, 99, 64, 0.18);
}

.homepage .cfg__offer-total {
    color: var(--homepage-premium-ink);
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.1;
}

.homepage .cfg__offer-meta {
    display: grid;
    gap: 6px;
    padding-top: 1px;
}

.homepage .cfg__offer-meta div {
    color: var(--homepage-premium-ink-soft);
    font-size: 0.72rem;
    line-height: 1.42;
    padding: 6px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(44, 62, 80, 0.05);
}

.homepage .cfg__calc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    color: var(--homepage-premium-accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.homepage .cfg__calc-link:hover {
    color: var(--homepage-premium-ink);
}

.homepage .cfg__estimate-breakdown {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(44, 62, 80, 0.08);
}

.homepage .cfg__estimate-title {
    margin: 0 0 2px;
    color: var(--homepage-premium-ink);
    font-size: 0.84rem;
    font-weight: 800;
}

.homepage .cfg__estimate-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(44, 62, 80, 0.06);
}

.homepage .cfg__estimate-line-main {
    display: grid;
    gap: 2px;
}

.homepage .cfg__estimate-line-main strong {
    color: var(--homepage-premium-ink);
    font-size: 0.78rem;
}

.homepage .cfg__estimate-line-main span,
.homepage .cfg__estimate-line-value {
    color: var(--homepage-premium-ink-soft);
    font-size: 0.74rem;
    line-height: 1.45;
}

.homepage .cfg__estimate-line-value {
    color: var(--homepage-premium-ink);
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .homepage .cfg__panel {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .homepage .cfg-test-dim-grid {
        grid-template-columns: 1fr;
    }

    .homepage .cfg__panel-section {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .homepage .cfg {
        padding: 52px 0;
    }

    .homepage .cfg__intro {
        gap: 16px;
    }

    .homepage .cfg__intro-card {
        padding: 16px 18px;
        border-radius: 18px;
    }

    .homepage .cfg__wrapper {
        gap: 18px;
    }

    .homepage .cfg__canvas-wrap {
        aspect-ratio: 4 / 3;
        min-height: 320px;
        border-radius: 20px;
    }

    .homepage .cfg__canvas-badges {
        position: absolute;
        top: 12px;
        left: 12px;
        right: 12px;
        padding: 0;
        gap: 8px;
    }

    .homepage .cfg__canvas-badges span {
        font-size: 0.72rem;
        padding: 8px 10px;
    }

    .homepage .cfg__canvas-caption {
        position: static;
        margin: 12px 14px 14px;
        padding: 12px 14px;
        font-size: 0.79rem;
    }

    .homepage .cfg__panel {
        gap: 12px;
    }

    .homepage .cfg__mobile-steps {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        position: sticky;
        top: 10px;
        z-index: 4;
        padding: 9px;
        border-radius: 18px;
        background: rgba(255, 253, 250, 0.94);
        border: 1px solid rgba(197, 110, 45, 0.12);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
    }

    .homepage .cfg__mobile-steps::-webkit-scrollbar {
        display: none;
    }

    .homepage .cfg__mobile-step {
        min-height: 38px;
        padding: 8px 6px;
        border-radius: 12px;
        border: 1px solid rgba(44, 62, 80, 0.08);
        background: rgba(255, 255, 255, 0.9);
        color: var(--homepage-premium-ink-soft);
        font-size: 0.68rem;
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: 0.005em;
        white-space: nowrap;
        text-align: center;
        cursor: pointer;
        transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .homepage .cfg__mobile-step.is-active {
        color: #fff;
        border-color: transparent;
        background: linear-gradient(135deg, var(--homepage-premium-accent), var(--homepage-premium-accent-deep));
        box-shadow: 0 10px 20px rgba(151, 74, 25, 0.24);
    }

    .homepage .cfg__panel-section {
        padding: 15px 15px 16px;
        border-radius: 18px;
    }

    .homepage .cfg__panel-section.is-mobile-hidden {
        display: none;
    }

    .homepage .cfg__panel-head {
        gap: 10px;
        margin-bottom: 10px;
    }

    .homepage .cfg__panel-title {
        font-size: 0.95rem;
    }

    .homepage .cfg__panel-summary {
        font-size: 0.74rem;
    }

    .homepage .cfg__panel-toggle {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .homepage .cfg__house-types,
    .homepage .cfg__colors,
    .homepage .cfg-test-dim-grid {
        grid-template-columns: 1fr;
    }

    .homepage .cfg__house-type-btn,
    .homepage .cfg__color-btn {
        padding: 12px 14px;
    }

    .homepage .cfg__house-type-btn {
        min-height: 68px;
    }

    .homepage .cfg-test-dim-head {
        flex-direction: column;
        align-items: stretch;
    }

    .homepage .cfg-test-reset,
    .homepage .cfg-test-next {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .homepage .cfg-test-next-wrap {
        justify-content: stretch;
    }

    .homepage .cfg-test-next--footer {
        min-width: 0;
    }

    .homepage .cfg-test-dim-field {
        padding: 12px;
    }

    .homepage .cfg__area-wrap {
        padding: 0 12px;
        gap: 10px;
    }

    .homepage .cfg__area-wrap input {
        font-size: 1rem;
    }

    .homepage .cfg__cost {
        gap: 12px;
    }

    .homepage .cfg__cost-line {
        font-size: 0.83rem;
    }

    .homepage .cfg__offer-card {
        padding: 13px 13px 12px;
    }

    .homepage .cfg__offer-total {
        font-size: 1.1rem;
    }

    .homepage .cfg__offer-meta div {
        font-size: 0.7rem;
        padding: 6px 8px;
    }

    .homepage .cfg__estimate-line {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .homepage .cfg__estimate-line-value {
        white-space: normal;
    }

    .homepage .cfg__cta-btn {
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .header__menu {
        width: auto;
        border-left: none;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }

    .homepage .cfg__canvas-wrap {
        min-height: 280px;
    }

    .homepage .cfg__mobile-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        padding: 8px;
    }

    .homepage .cfg__mobile-step {
        min-height: 36px;
        padding: 7px 4px;
        font-size: 0.62rem;
    }

    .homepage .cfg__intro-card {
        padding: 15px 16px;
    }

    .homepage .cfg__panel-section {
        padding: 14px;
    }

    .homepage .cfg__panel-title {
        font-size: 0.91rem;
    }

    .homepage .cfg__panel-summary {
        font-size: 0.72rem;
    }

    .homepage .cfg-test-dim-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .homepage .cfg__cost-line {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .homepage .cfg__cost-line span:last-child {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .homepage .cfg__mobile-steps {
        display: flex;
        grid-template-columns: none;
        gap: 6px;
        overflow-x: auto;
        padding: 6px;
        top: 76px;
        border-radius: 14px;
        scrollbar-width: none;
    }

    .homepage .cfg__mobile-step {
        flex: 0 0 auto;
        min-height: 32px;
        padding: 6px 10px;
        font-size: 0.65rem;
        border-radius: 10px;
    }

    .homepage .cfg-test-dim-field {
        gap: 6px;
        padding: 9px;
        border-radius: 14px;
    }

    .homepage .cfg-test-dim-title {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        font-size: 0.76rem;
    }

    .homepage .cfg-test-dim-value {
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .homepage .cfg-test-dim-field small,
    .homepage .cfg-test-dim-note {
        display: none;
    }

    .homepage .cfg-test-next-wrap {
        margin-top: 2px;
    }

    .homepage .cfg-test-reset,
    .homepage .cfg-test-next {
        padding: 9px 12px;
        font-size: 0.74rem;
    }
}

@media (max-width: 380px) {
    .homepage .cfg__mobile-step {
        padding: 6px 8px;
        font-size: 0.6rem;
    }
}

.homepage .process {
    background: transparent;
    --process-step-card-pad-top: 28px;
}

.homepage .process .section-header__tag {
    background-color: rgba(197, 110, 45, 0.12);
}

.homepage .process .section-header__title,
.homepage .process__step-title {
    color: var(--homepage-premium-ink);
}

.homepage .process .section-header__desc,
.homepage .process__step-desc {
    color: var(--homepage-premium-ink-soft);
}

.homepage .process__steps::before {
    background: linear-gradient(90deg, rgba(197, 110, 45, 0.26), rgba(197, 110, 45, 0.06));
}

.homepage .process__step {
    padding: 28px 20px 24px;
    border: 1px solid var(--homepage-premium-line);
    border-radius: 26px;
    background: var(--homepage-premium-surface);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
}

.homepage .process__step-number {
    box-shadow: 0 12px 28px rgba(197, 110, 45, 0.24);
}

.homepage .services {
    background: transparent;
}

.homepage .works,
.homepage .why-us,
.homepage .testimonials {
    background: transparent;
}

.homepage .services .section-header__tag {
    background: rgba(197, 110, 45, 0.12);
    color: var(--homepage-premium-accent-deep);
    border: 1px solid rgba(197, 110, 45, 0.14);
}

.homepage .services .section-header__title,
.homepage .services .service-card__title {
    color: var(--homepage-premium-ink);
}

.homepage .services .section-header__desc,
.homepage .services .service-card__desc {
    color: var(--homepage-premium-ink-soft);
}

.homepage .services .service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 251, 247, 0.9) 100%);
    border: 1px solid var(--homepage-premium-line);
    box-shadow: 0 16px 44px rgba(17, 24, 39, 0.07);
}

.homepage .services .service-card:hover {
    border-color: rgba(197, 110, 45, 0.26);
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.11);
}

.homepage .services .service-card__media {
    background:
        radial-gradient(circle at 16% 8%, rgba(197, 110, 45, 0.14), transparent 52%),
        linear-gradient(160deg, #faf7f2 0%, #f2f5f9 100%);
    border-color: rgba(23, 29, 40, 0.08);
}

.homepage .works .section-header__tag,
.homepage .why-us .section-header__tag,
.homepage .testimonials .section-header__tag {
    background: rgba(197, 110, 45, 0.12);
    color: var(--homepage-premium-accent-deep);
}

.homepage .works__filter {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(23, 29, 40, 0.08);
    color: var(--homepage-premium-ink-soft);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.04);
}

.homepage .works__filter:hover {
    border-color: rgba(197, 110, 45, 0.34);
    color: var(--homepage-premium-accent-deep);
}

.homepage .works__filter--active,
.homepage .works__filter--active:hover {
    background: linear-gradient(135deg, var(--homepage-premium-accent), #d98c4f);
    border-color: transparent;
    color: var(--color-white);
}

.homepage .works__item,
.homepage .testimonial-card {
    border: 1px solid var(--homepage-premium-line);
    box-shadow: 0 16px 42px rgba(17, 24, 39, 0.07);
}

.homepage .works__item:hover,
.homepage .testimonial-card:hover {
    box-shadow: 0 22px 54px rgba(17, 24, 39, 0.1);
}

.homepage .works__item {
    --works-card-shell: linear-gradient(135deg, rgba(197, 110, 45, 0.42) 0%, rgba(255, 225, 188, 0.72) 34%, rgba(156, 98, 58, 0.34) 68%, rgba(197, 110, 45, 0.46) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transform: none;
    border: 1px solid transparent;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 248, 0.94) 100%) padding-box,
        var(--works-card-shell) border-box;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.09), 0 2px 10px rgba(197, 110, 45, 0.08);
    transition: box-shadow 0.28s ease, filter 0.28s ease;
}

.homepage .works__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 236, 212, 0), rgba(255, 236, 212, 0.85), rgba(255, 236, 212, 0));
    pointer-events: none;
    z-index: 2;
}

.homepage .works__item:hover {
    --works-card-shell: linear-gradient(135deg, rgba(197, 110, 45, 0.56) 0%, rgba(255, 228, 186, 0.86) 32%, rgba(160, 96, 52, 0.48) 68%, rgba(197, 110, 45, 0.64) 100%);
    transform: none;
    box-shadow: 0 24px 56px rgba(17, 24, 39, 0.12), 0 6px 20px rgba(197, 110, 45, 0.16);
    filter: saturate(1.02);
}

.homepage .works__item .works__img img {
    transition: transform 0.45s ease;
}

.homepage .works__item .works__img {
    display: block;
    border-radius: 22px 22px 0 0;
    border-bottom: 1px solid rgba(197, 110, 45, 0.16);
}

.homepage .works__item:hover .works__img img {
    transform: scale(1.02);
}

.homepage .works__grid {
    align-items: stretch;
}

.homepage .works__img--link {
    display: block;
    flex-shrink: 0;
}

.homepage .works__item .project-visual {
    min-height: 242px;
    border-radius: 0;
}

.homepage .works__item .project-visual::before,
.homepage .works__item .project-visual::after,
.homepage .works__item .project-visual__inner {
    display: none;
}

.homepage .works__item .works__info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px 22px;
    background: transparent;
}

.homepage .works__eyebrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.homepage .works__category {
    background: linear-gradient(135deg, rgba(197, 110, 45, 0.16), rgba(217, 140, 79, 0.22));
    color: var(--homepage-premium-accent-deep);
    box-shadow: none;
    border: 1px solid rgba(197, 110, 45, 0.18);
    display: inline-flex;
    align-items: center;
    width: max-content;
    justify-self: start;
    margin-bottom: 0;
}

.homepage .works__project-id {
    color: rgba(66, 51, 39, 0.62);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.homepage .works__info h4 {
    margin: 0;
    font-size: 1.14rem;
    line-height: 1.35;
    color: var(--homepage-premium-ink);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: calc(1.14rem * 1.35 * 2);
}

.homepage .works__info p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.72;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: calc(0.95rem * 1.72 * 3);
}

.homepage .works__details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    min-height: 48px;
    align-content: flex-start;
}

.homepage .works__link {
    margin-top: auto;
    align-self: flex-start;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(197, 110, 45, 0.08);
    border: 1px solid rgba(197, 110, 45, 0.14);
    color: var(--homepage-premium-accent-deep);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.homepage .works__link:hover {
    background: rgba(197, 110, 45, 0.12);
    border-color: rgba(197, 110, 45, 0.2);
    transform: translateY(-1px);
}

.homepage .works__meta {
    color: var(--homepage-premium-accent-deep);
    font-size: 0.86rem;
    font-weight: 700;
}

.homepage .works__meta--soft {
    color: rgba(66, 51, 39, 0.66);
}

.homepage .works__meta i {
    color: rgba(197, 110, 45, 0.92);
}

@media (max-width: 768px) {
    .homepage .works__item .project-visual {
        min-height: 224px;
    }

    .homepage .works__item .works__info {
        padding: 18px 18px 20px;
    }

    .homepage .works__eyebrow,
    .homepage .works__details {
        flex-direction: column;
        align-items: flex-start;
    }

    .homepage .works__info h4 {
        min-height: auto;
    }

    .homepage .works__info p {
        -webkit-line-clamp: 4;
        min-height: auto;
    }

    .homepage .works__details {
        min-height: auto;
        gap: 8px;
    }

    .homepage .works__link {
        width: 100%;
        justify-content: center;
    }
}

.homepage .works__info p,
.homepage .testimonial-card__text,
.homepage .testimonial-card__author span {
    color: var(--homepage-premium-ink-soft);
}

.homepage .why-us__desc,
.homepage .why-us__feature p {
    color: var(--homepage-premium-ink-soft);
}

.homepage .why-us__image-placeholder {
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.12), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
    border: 1px solid rgba(197, 110, 45, 0.12);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
    color: var(--homepage-premium-ink-soft);
}

.homepage .testimonials__summary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.98));
    color: var(--homepage-premium-ink);
    border: 1px solid rgba(197, 110, 45, 0.14);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.homepage .testimonials__summary-badge {
    background-color: rgba(197, 110, 45, 0.1);
    color: var(--homepage-premium-accent-deep);
}

.homepage .testimonials__summary-meta {
    color: var(--homepage-premium-ink-soft);
}

.homepage .cta-banner {
    background: linear-gradient(115deg, rgba(20, 28, 39, 0.96) 0%, rgba(44, 56, 73, 0.92) 48%, rgba(122, 70, 34, 0.82) 100%);
}

.homepage .cta-banner::before {
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.homepage .cta-banner__title,
.homepage .cta-banner__desc {
    color: var(--color-white);
}

.homepage .cta-banner .btn--white {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--homepage-premium-accent-deep);
}

.homepage .cta-banner .btn--white:hover {
    background-color: #f6f0e9;
    border-color: #f6f0e9;
}

.homepage .cta-banner .btn--outline-white {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.34);
    background-color: rgba(255, 255, 255, 0.06);
}

.homepage .cta-banner .btn--outline-white:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.56);
}

/* ============================================
   CALCULATOR PAGE
   ============================================ */
.calc-hero {
    padding: 48px 0 32px;
    background:
        radial-gradient(circle at top right, rgba(232, 97, 26, 0.12), transparent 28%),
        linear-gradient(180deg, #fffaf6 0%, var(--color-white) 100%);
}

.calc-hero__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 32px;
    align-items: stretch;
}

.calc-hero__content {
    background: var(--color-white);
    border: 1px solid rgba(232, 97, 26, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
}

.calc-hero__title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.06;
    color: var(--color-dark);
    margin: 18px 0 18px;
}

.calc-hero__desc {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--color-gray-600);
    max-width: 760px;
}

.calc-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.calc-hero__chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-600);
    font-size: 0.88rem;
    font-weight: 600;
}

.calc-hero__chips i {
    color: var(--color-orange);
}

.calc-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.calc-hero__panel {
    background: linear-gradient(160deg, var(--color-dark) 0%, #24253d 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.calc-hero__panel::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -20%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
}

.calc-kpis {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.calc-kpis__item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 18px 18px 16px;
}

.calc-kpis__item strong {
    display: block;
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.calc-kpis__item span {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    font-size: 0.9rem;
}

.calc-section {
    padding-top: 26px;
}

.calc-shell__intro {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.calc-shell__lead {
    color: var(--color-gray-600);
    line-height: 1.85;
    font-size: 0.98rem;
}

.calculator {
    background: var(--color-white);
    border: 1px solid rgba(232, 97, 26, 0.12);
    border-radius: calc(var(--radius-lg) + 4px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.calculator__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
}

.calculator__inputs,
.calculator__results {
    padding: 34px;
}

.calculator__inputs {
    background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
    border-right: 1px solid var(--color-gray-200);
}

.calculator__results {
    background: linear-gradient(180deg, #fff8f3 0%, #fff 100%);
}

.calculator__panel-head {
    margin-bottom: 24px;
}

.calculator__heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.45rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.calculator__heading i {
    color: var(--color-orange);
}

.calculator__panel-copy {
    color: var(--color-gray-600);
    font-size: 0.92rem;
    line-height: 1.75;
}

.calculator__group {
    margin-bottom: 22px;
}

.calculator__label {
    display: block;
    margin-bottom: 12px;
    color: var(--color-dark);
    font-size: 0.96rem;
    font-weight: 700;
}

.calculator__radios {
    display: grid;
    gap: 12px;
}

.calculator__radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calculator__radio-box {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    background: var(--color-white);
    cursor: pointer;
    transition: all var(--transition);
}

.calculator__radio-box i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 26, 0.1);
    color: var(--color-orange);
    font-size: 1rem;
}

.calculator__radio-box strong {
    display: block;
    color: var(--color-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.calculator__radio-box span:last-child {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 0.92rem;
}

.calculator__radio:hover .calculator__radio-box,
.calculator__radio--active .calculator__radio-box {
    border-color: rgba(232, 97, 26, 0.38);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.calculator__radio--active .calculator__radio-box {
    box-shadow: 0 0 0 3px rgba(232, 97, 26, 0.1);
}

.calculator__select,
.calculator__input {
    width: 100%;
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 15px 16px;
    font-family: var(--font-primary);
    font-size: 0.96rem;
    color: var(--color-dark);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.calculator__select:focus,
.calculator__input:focus {
    border-color: rgba(232, 97, 26, 0.45);
    box-shadow: 0 0 0 3px rgba(232, 97, 26, 0.1);
}

.calculator__area-input {
    position: relative;
}

.calculator__input {
    padding-right: 58px;
    font-weight: 700;
    font-size: 1.08rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

.calculator__input::-webkit-outer-spin-button,
.calculator__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.calculator__unit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-400);
    font-weight: 700;
}

.calculator__slider {
    width: 100%;
    margin-top: 14px;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(232, 97, 26, 0.65) 0%, rgba(232, 97, 26, 0.18) 100%);
    outline: none;
}

.calculator__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-orange);
    box-shadow: 0 3px 10px rgba(232, 97, 26, 0.35);
    cursor: pointer;
}

.calculator__slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-orange);
    border: none;
    cursor: pointer;
}

.calculator__slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--color-gray-400);
}

.calculator__aside-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(232, 97, 26, 0.08);
    border: 1px solid rgba(232, 97, 26, 0.12);
}

.calculator__aside-note i {
    color: var(--color-orange);
    margin-top: 3px;
}

.calculator__aside-note p {
    color: var(--color-gray-600);
    line-height: 1.7;
    font-size: 0.9rem;
}

.calculator__result-card {
    background: linear-gradient(180deg, #ffffff 0%, #fff4eb 100%);
    border: 1px solid rgba(232, 97, 26, 0.14);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.calculator__result-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
}

.calculator__result-label {
    color: var(--color-gray-600);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.calculator__result-label i {
    color: var(--color-orange);
}

.calculator__result-value {
    color: var(--color-dark);
    font-weight: 800;
    font-size: 1.12rem;
}

.calculator__result-divider {
    height: 1px;
    background: var(--color-gray-200);
    margin: 6px 0;
}

.calculator__result-item--total {
    padding-top: 18px;
}

.calculator__result-item--total .calculator__result-value {
    color: var(--color-orange);
    font-size: 1.7rem;
}

.calculator__result-details {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.calculator__result-details p {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--color-gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

.calculator__result-details i {
    color: var(--color-orange);
}

.calculator__estimate-breakdown {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid rgba(232, 97, 26, 0.12);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 12px;
}

.calculator__estimate-title {
    margin: 0;
    color: var(--color-dark);
    font-size: 0.94rem;
    font-weight: 800;
}

.calculator__estimate-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: baseline;
    padding-top: 12px;
    border-top: 1px solid var(--color-gray-200);
}

.calculator__estimate-line:first-of-type {
    padding-top: 0;
    border-top: none;
}

.calculator__estimate-line-main {
    display: grid;
    gap: 3px;
}

.calculator__estimate-line-main strong {
    color: var(--color-dark);
    font-size: 0.92rem;
}

.calculator__estimate-line-main span {
    color: var(--color-gray-500);
    font-size: 0.82rem;
    line-height: 1.5;
}

.calculator__estimate-line-value {
    color: var(--color-dark);
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
}

.calculator__estimate-line--technical .calculator__estimate-line-value {
    color: var(--color-gray-500);
    font-size: 0.82rem;
    font-weight: 700;
}

.calculator__trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.calculator__trust-row div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    padding: 10px 14px;
    color: var(--color-gray-600);
    font-size: 0.83rem;
    font-weight: 600;
}

.calculator__trust-row i {
    color: var(--color-orange);
}

.calculator__note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(26, 26, 46, 0.04);
    color: var(--color-gray-600);
    line-height: 1.75;
    font-size: 0.88rem;
}

.calculator__note i {
    color: var(--color-orange);
    margin-right: 8px;
}

.calculator__cta {
    width: 100%;
    margin-top: 18px;
    justify-content: center;
}

.calc-benefits {
    padding-top: 88px;
}

.calc-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.calc-steps__card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}

.calc-steps__number {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-orange);
    margin-bottom: 12px;
}

.calc-steps__card h3 {
    color: var(--color-dark);
    font-size: 1rem;
    margin-bottom: 10px;
}

.calc-steps__card p {
    color: var(--color-gray-600);
    line-height: 1.75;
    font-size: 0.9rem;
}

.calc-factors__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.calc-factors__card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}

.calc-factors__card i {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 26, 0.12);
    color: var(--color-orange);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.calc-factors__card h3 {
    color: var(--color-dark);
    font-size: 1rem;
    margin-bottom: 10px;
}

.calc-factors__card p {
    color: var(--color-gray-600);
    line-height: 1.75;
    font-size: 0.9rem;
}

.calc-exclusions__box {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
}

.disclaimer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 26px;
}

.disclaimer-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--color-gray-600);
    line-height: 1.7;
    font-size: 0.92rem;
}

.disclaimer-list i {
    color: var(--color-orange);
    margin-top: 4px;
}

.calc-exclusions__cta {
    margin-top: 24px;
    text-align: center;
}

.calc-exclusions__cta p {
    margin-bottom: 18px;
    color: var(--color-gray-600);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .calc-hero__grid,
    .calc-shell__intro,
    .calculator__grid {
        grid-template-columns: 1fr;
    }

    .calculator__inputs {
        border-right: none;
        border-bottom: 1px solid var(--color-gray-200);
    }

    .calc-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .calc-hero {
        padding: 28px 0 14px;
    }

    .calc-hero__content,
    .calc-hero__panel,
    .calculator__inputs,
    .calculator__results,
    .calc-exclusions__box {
        padding: 24px;
    }

    .calc-steps__grid,
    .calc-factors__grid,
    .disclaimer-list {
        grid-template-columns: 1fr;
    }

    .calc-hero__actions {
        flex-direction: column;
    }

    .calc-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .calculator__radio-box {
        grid-template-columns: 42px 1fr;
    }

    .calculator__radio-box span:last-child {
        grid-column: 2;
    }

    .calculator__estimate-line {
        grid-template-columns: 1fr;
    }

    .calculator__estimate-line-value {
        white-space: normal;
    }
}

.footer__contact a:hover {
    color: var(--color-orange);
}

.footer__contact i {
    color: var(--color-orange);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--color-gray-600);
}

.works__img--link,
.portfolio-card__image-link,
.product-project-card__media {
    display: block;
    text-decoration: none;
}

.project-visual {
    position: relative;
    min-height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #1a1f2e 0%, #3b4358 100%);
}

.project-visual__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.project-visual::before,
.project-visual::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    opacity: 0.14;
    background: rgba(255, 255, 255, 0.75);
}

.project-visual::before {
    width: 180px;
    height: 180px;
    top: -64px;
    right: -40px;
}

.project-visual::after {
    width: 120px;
    height: 120px;
    bottom: -24px;
    left: -16px;
}

.project-visual__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    color: var(--color-white);
    background: linear-gradient(180deg, rgba(15, 18, 28, 0.08) 20%, rgba(15, 18, 28, 0.78) 100%);
}

.project-visual--fallback .project-visual__inner {
    background: transparent;
}

.project-visual__inner i {
    font-size: 2rem;
    opacity: 0.92;
}

.project-visual__inner strong {
    font-size: 1.3rem;
    line-height: 1.2;
}

.project-visual__inner span {
    font-size: 0.95rem;
    opacity: 0.92;
}

.project-visual__id {
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-tone--graphite {
    background: linear-gradient(135deg, #111827 0%, #364152 100%);
}

.project-tone--bronze {
    background: linear-gradient(135deg, #5f2c1f 0%, #b36b32 100%);
}

.project-tone--forest {
    background: linear-gradient(135deg, #1d4a43 0%, #46796b 100%);
}

.project-tone--steel {
    background: linear-gradient(135deg, #2a3642 0%, #708494 100%);
}

.project-tone--blue {
    background: linear-gradient(135deg, #12395b 0%, #2886af 100%);
}

.project-tone--sand {
    background: linear-gradient(135deg, #684f2a 0%, #c89b56 100%);
}

.works__item--real .works__img {
    background: none;
}

.works__item--real .works__info {
    display: grid;
    gap: 8px;
}

.works__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-500);
    font-size: 0.9rem;
    font-weight: 600;
}

.works__meta i,
.product-project-card__facts i,
.product-project-card__link i,
.project-detail__chips i,
.project-story__notes i {
    color: var(--color-orange);
}

.portfolio-card--real .portfolio-card__image-link {
    display: block;
    padding: 16px;
}

.portfolio-card--real .portfolio-card__badge {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 2;
}

.portfolio-card--real .portfolio-card__content {
    display: grid;
    gap: 12px;
}

.portfolio-card__eyebrow {
    color: var(--homepage-premium-accent-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portfolio-card__meta--stack {
    display: grid;
    gap: 8px;
}

.product-projects {
    padding: 96px 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.02) 0%, rgba(232, 97, 26, 0.05) 100%);
}

.product-projects__summary {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 28px;
}

.product-projects__summary strong {
    color: var(--color-dark);
    font-size: 1.1rem;
}

.product-projects__summary p {
    margin: 0;
    color: var(--color-gray-600);
    line-height: 1.7;
    max-width: 760px;
}

.product-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-project-card,
.project-detail__intro,
.project-detail__panel,
.project-facts__card,
.project-story__cta-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 239, 0.94));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(23, 29, 40, 0.08);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.07);
}

.product-project-card {
    overflow: hidden;
}

.product-project-card__media {
    padding: 16px;
}

.product-project-card__body {
    padding: 0 20px 22px;
}

.product-project-card__topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--homepage-premium-accent-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-project-card__body h3 {
    color: var(--color-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-project-card__body p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 14px;
}

.product-project-card__facts {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.product-project-card__facts li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray-600);
    font-size: 0.92rem;
}

.product-project-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-dark);
    font-weight: 700;
}

.project-detail,
.project-facts,
.project-gallery,
.project-story,
.project-related {
    padding: 72px 0;
}

.project-gallery {
    background: var(--color-gray-100);
}

.project-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.project-gallery__item {
    display: block;
    margin: 0;
    min-height: 210px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--color-white);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.project-gallery__item.is-loaded {
    opacity: 1;
    transform: translateY(0);
}

.project-gallery__item img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    display: block;
}

.project-gallery__item img,
.project-detail__panel .project-visual__photo {
    cursor: zoom-in;
}

.project-lightbox-open {
    overflow: hidden;
}

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(14, 18, 28, 0.9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.project-lightbox.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.project-lightbox__dialog {
    position: relative;
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    align-items: center;
    gap: 14px;
}

.project-lightbox__figure {
    margin: 0;
}

.project-lightbox__image {
    display: block;
    width: 100%;
    max-height: 78vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.04);
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.project-lightbox__image.is-switching {
    opacity: 0.2;
    transform: scale(0.985);
}

.project-lightbox__caption {
    margin-top: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    line-height: 1.5;
}

.project-lightbox__counter {
    position: absolute;
    left: 50%;
    bottom: -36px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-lightbox__close,
.project-lightbox__nav {
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.project-lightbox__close:hover,
.project-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.project-lightbox__close {
    position: absolute;
    right: 8px;
    top: -66px;
}

.project-detail__hero,
.project-facts__grid,
.project-story__layout {
    display: grid;
    gap: 24px;
}

.project-detail__hero,
.project-story__layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.85fr);
}

.project-facts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-detail__intro,
.project-detail__panel,
.project-facts__card,
.project-story__cta-card {
    padding: 28px;
}

.project-detail__eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(197, 110, 45, 0.12), rgba(217, 140, 79, 0.18));
    color: var(--homepage-premium-accent-deep);
    border: 1px solid rgba(197, 110, 45, 0.16);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.project-detail__intro h2 {
    color: var(--color-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.project-detail__intro p,
.project-story__lead,
.project-story__cta-card p {
    color: var(--color-gray-600);
    line-height: 1.8;
}

.project-detail__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.project-detail__chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 238, 0.92));
    color: var(--homepage-premium-ink);
    border: 1px solid rgba(23, 29, 40, 0.08);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
    font-weight: 700;
}

.project-detail__panel .project-visual {
    min-height: 260px;
    margin-bottom: 18px;
}

.project-detail__panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.project-detail__panel-grid div {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 237, 0.92));
    border: 1px solid rgba(23, 29, 40, 0.06);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.04);
    border-radius: var(--radius-md);
    padding: 14px 16px;
}

.project-detail__panel-grid strong {
    display: block;
    color: var(--color-dark);
    font-size: 1rem;
    margin-bottom: 6px;
}

.project-detail__panel-grid span,
.project-facts__card span {
    color: var(--color-gray-500);
}

.project-facts__card h3,
.project-story__cta-card h3 {
    color: var(--color-dark);
    margin-bottom: 18px;
}

.project-facts__card ul,
.project-story__notes {
    display: grid;
    gap: 14px;
}

.project-facts__card li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-gray-200);
}

.project-facts__card li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.project-facts__card strong {
    color: var(--color-dark);
    text-align: right;
}

.project-story__notes div {
    display: flex;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.92));
    border: 1px solid rgba(23, 29, 40, 0.08);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.05);
    border-radius: var(--radius-md);
    color: var(--homepage-premium-ink-soft);
    line-height: 1.7;
}

.project-story__cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.96));
    border-color: rgba(197, 110, 45, 0.14);
    box-shadow: 0 22px 48px rgba(17, 24, 39, 0.08);
}

.project-story__cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.project-related {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.02) 0%, rgba(245, 241, 234, 0.82) 100%);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(232, 97, 26, 0.4);
    z-index: 999;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process__steps::before {
        display: none;
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid--ticker .testimonial-card {
        width: min(348px, 86vw);
        flex: 0 0 min(348px, 86vw);
    }

    .testimonials__grid--ticker .testimonials__ticker-track {
        animation-duration: 24s;
    }

    .testimonials__summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-projects__grid,
    .project-detail__hero,
    .project-facts__grid,
    .project-gallery__grid,
    .project-story__layout {
        grid-template-columns: 1fr;
    }

    .project-lightbox__dialog {
        grid-template-columns: 54px minmax(0, 1fr) 54px;
    }

    .project-lightbox__close,
    .project-lightbox__nav {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
    }

    .cfg__canvas-wrap.is-updating,
    .cfg__panel-section.is-updating,
    .cfg__cost.is-updating {
        animation: none !important;
    }

    .homepage .cfg__panel-toggle,
    .homepage .cfg__panel-toggle i,
    .homepage .cfg__house-type-btn,
    .homepage .cfg__color-btn,
    .homepage .cfg-test-reset,
    .homepage .cfg-test-next,
    .cfg__house-type-btn,
    .cfg__color-btn,
    .cfg__area-wrap,
    .cfg__cost-total strong,
    .header__menu,
    .header__menu-backdrop {
        transition: none !important;
    }

    .header__top-bar {
        display: none;
    }

    .header__nav {
        background: rgba(255, 255, 255, 0.92);
        border-bottom: 1px solid rgba(197, 110, 45, 0.12);
        box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .header__nav .container {
        height: 68px;
        gap: 10px;
    }

    .header__logo-img {
        height: 46px;
    }

    .header__lang-switcher {
        gap: 3px;
        padding: 4px;
        border-color: rgba(44, 62, 80, 0.08);
        background: rgba(246, 241, 234, 0.86);
    }

    .header__lang-link {
        min-width: 34px;
        padding: 6px 7px;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .header__menu {
        display: flex;
        position: fixed;
        top: 78px;
        right: 12px;
        left: 12px;
        width: auto;
        max-height: calc(100svh - 94px);
        max-height: calc(100dvh - 94px);
        height: auto;
        background:
            linear-gradient(145deg, rgba(255, 253, 249, 0.98) 0%, rgba(247, 241, 232, 0.96) 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 7px;
        box-shadow: 0 28px 80px rgba(19, 24, 36, 0.24);
        border: 1px solid rgba(197, 110, 45, 0.16);
        border-radius: 24px;
        transform: translateY(-10px) scale(0.98);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transition: none;
        z-index: 1710;
    }

    .header__menu.open {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header__menu-backdrop {
        position: fixed;
        inset: 68px 0 0 0;
        border: none;
        background:
            radial-gradient(circle at top right, rgba(197, 110, 45, 0.18), transparent 34%),
            rgba(12, 16, 24, 0.46);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        transition: none;
        z-index: 1700;
    }

    .header__menu-backdrop.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .product-projects {
        padding: 72px 0;
    }

    .product-projects__summary,
    .project-facts__card li,
    .project-detail__chips {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-detail__intro,
    .project-detail__panel,
    .project-facts__card,
    .project-story__cta-card {
        padding: 24px;
    }

    .project-detail__panel-grid,
    .product-projects__grid {
        grid-template-columns: 1fr;
    }

    .project-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-lightbox {
        padding: 14px;
    }

    .project-lightbox__dialog {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 10px;
    }

    .project-lightbox__close,
    .project-lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .project-lightbox__close {
        top: -50px;
        right: 2px;
    }

    .project-lightbox__counter {
        bottom: -28px;
        font-size: 0.75rem;
    }

    .header__menu-link {
        width: 100%;
        padding: 12px 14px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(44, 62, 80, 0.08);
        box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
        color: var(--color-dark);
        font-size: 0.96rem;
        font-weight: 750;
    }

    .header__menu-link::after {
        display: none;
    }

    .header__menu-link:hover,
    .header__menu-link.active,
    .header__dropdown.open > .header__menu-link {
        color: var(--color-orange);
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 229, 0.95));
        border-color: rgba(197, 110, 45, 0.22);
        box-shadow: 0 14px 28px rgba(197, 110, 45, 0.12);
    }

    .header__menu > li {
        width: 100%;
    }

    .header__dropdown {
        width: 100%;
    }

    .header__dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 7px;
        min-width: 0;
        display: none;
        border-left: none;
        margin: 7px 0 0;
        background: rgba(255, 255, 255, 0.62);
        border-radius: 16px;
        border: 1px solid rgba(44, 62, 80, 0.08);
    }

    .header__dropdown.open .header__dropdown-menu {
        display: grid;
        gap: 5px;
    }

    .header__dropdown.open .header__dropdown-arrow {
        transform: rotate(180deg);
    }

    .header__dropdown-menu a {
        display: flex;
        align-items: center;
        min-height: 40px;
        padding: 9px 12px;
        font-size: 0.86rem;
        font-weight: 650;
        border-radius: 12px;
        color: var(--color-gray-700);
    }

    .header__dropdown-menu a:hover,
    .header__dropdown-menu a.active {
        padding-left: 12px;
        background: rgba(197, 110, 45, 0.1);
        color: var(--color-orange);
        text-decoration: none;
    }

    .header__dropdown-label--tagged-ru {
        padding-right: 1.7em;
    }

    .header__new-badge--dropdown-ru {
        top: -0.54em;
        right: 0.04em;
        min-height: 15px;
        padding: 2px 5px;
        font-size: 0.5rem;
    }

    .header__cta {
        display: none;
    }

    .header__burger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        border-radius: 16px;
        border: 1px solid rgba(44, 62, 80, 0.1);
        background: rgba(255, 255, 255, 0.88);
        box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
    }

    .header__burger span {
        width: 22px;
        height: 2px;
        background-color: var(--color-dark);
    }

    .header__burger.active {
        background: linear-gradient(135deg, rgba(255, 244, 231, 0.98), rgba(255, 255, 255, 0.94));
        border-color: rgba(197, 110, 45, 0.22);
    }

    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding-top: 90px;
        min-height: auto;
    }

    .homepage .hero {
        min-height: var(--ma-viewport-height, 100svh);
        display: flex;
        align-items: stretch;
        padding-top: clamp(78px, 11svh, 94px);
        background: linear-gradient(180deg, #121827 0%, #1a2030 44%, #0f1420 100%);
    }

    html.is-mobile-viewport .homepage .hero {
        min-height: var(--ma-viewport-height, 100vh);
    }

    .homepage .hero > .container {
        display: flex;
        align-items: stretch;
        min-height: calc(var(--ma-viewport-height, 100svh) - clamp(78px, 11svh, 94px));
    }

    @supports not (height: 100svh) {
        .homepage .hero {
            min-height: 100vh;
        }
    }

    .hero__video {
        object-position: 28% center;
        transform: scale(1.08);
        transform-origin: center;
    }

    .hero__image {
        object-position: 28% center;
        transform: scale(1.08);
        transform-origin: center;
    }

    .homepage .hero__image {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transform: none;
        z-index: 0;
    }

    .homepage .hero__overlay {
        background: linear-gradient(180deg, rgba(10, 14, 25, 0.04) 0%, rgba(10, 14, 25, 0.32) 30%, rgba(10, 14, 25, 0.78) 100%);
    }

    .hero__brand-block {
        width: 100%;
        gap: 14px;
        padding: 14px;
        border-radius: 20px;
    }

    .hero__brand-mark {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .hero__brand-logo {
        height: 40px;
    }

    .hero__brand-name {
        font-size: 1.85rem;
    }

    .hero__title {
        font-size: 2.2rem;
        max-width: 16ch;
    }

    .hero__content {
        padding: 28px 0 42px;
    }

    .homepage .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: clamp(16px, 2.8svh, 20px);
        width: 100%;
        min-height: 100%;
        padding: clamp(24px, 4.2svh, 36px) 0 clamp(22px, 4svh, 30px);
    }

    .hero__overlay::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 180px;
        height: 72px;
        background: linear-gradient(180deg, rgba(10, 14, 25, 0.68) 0%, rgba(10, 14, 25, 0.42) 100%);
        pointer-events: none;
    }

    .homepage .hero__overlay::after {
        content: none;
    }

    .hero__actions {
        margin-bottom: 10px;
    }

    .hero__actions .btn {
        min-width: 0;
    }

    .homepage .hero__brand-block {
        width: 100%;
        align-self: flex-start;
        gap: 12px;
        margin-bottom: 0;
        padding: 10px 14px 10px 10px;
        border-radius: 20px;
    }

    .homepage .hero__brand-mark {
        flex: 0 0 72px;
        width: 72px;
        height: 56px;
        border-radius: 18px;
    }

    .homepage .hero__brand-mark::after {
        border-radius: 17px;
    }

    .homepage .hero__brand-logo {
        width: 58px;
        height: auto;
        max-height: 40px;
    }

    .homepage .hero__brand-copy {
        align-items: flex-start;
        gap: 4px;
        text-align: left;
    }

    .homepage .hero__brand-label {
        justify-content: flex-start;
        font-size: clamp(0.62rem, 1.6vw, 0.72rem);
        letter-spacing: 0.08em;
    }

    .homepage .hero__brand-label::before,
    .homepage .hero__brand-label::after {
        max-width: 16px;
    }

    .homepage .hero__brand-name {
        font-size: clamp(1.22rem, 3.6vw, 1.48rem);
        letter-spacing: 0.02em;
    }

    .homepage .hero__copy {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 14px;
    }

    .homepage .hero__title {
        margin: 0;
        max-width: 14ch;
        font-size: clamp(2.08rem, 5.3vw, 2.62rem);
        line-height: 1.08;
    }

    .homepage .hero__subtitle {
        max-width: 100%;
        margin: 0;
        font-size: 0.98rem;
        line-height: 1.54;
    }

    .homepage .hero__qualities {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        margin: 4px 0 0;
    }

    .homepage .hero__qualities > :last-child {
        grid-column: auto;
    }

    .homepage .hero__quality {
        justify-content: center;
        padding: 8px 10px;
        min-height: 38px;
        text-align: center;
        font-size: 0.72rem;
        line-height: 1.22;
        gap: 5px;
    }

    .homepage .hero__quality i {
        width: 17px;
        height: 17px;
        font-size: 0.58rem;
    }

    .homepage .hero__engage {
        display: grid;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        margin-top: auto;
        padding-top: clamp(8px, 1.8svh, 16px);
    }

    .homepage .hero__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 0;
    }

    .homepage .hero__actions > :first-child {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .homepage .hero__actions > :nth-child(2) {
        grid-column: 1;
        grid-row: 1;
    }

    .homepage .hero__actions > :nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }

    .homepage .hero__actions .btn {
        min-height: 44px;
    }

    .homepage .hero__actions .btn--primary {
        min-height: 50px;
        font-size: 0.92rem;
    }

    .homepage .hero__actions .btn--outline {
        font-size: 0.83rem;
    }

    .homepage .hero__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        align-items: start;
        margin-top: 2px;
    }

    .homepage .hero__stat {
        padding: 0 4px;
    }

    .homepage .hero__stat-number {
        font-size: 1.38rem;
    }

    .homepage .hero__stat-label {
        font-size: 0.67rem;
        line-height: 1.22;
    }

    .hero__qualities {
        gap: 10px;
    }

    .hero__quality {
        font-size: 0.86rem;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__stat-number {
        font-size: 2rem;
    }

    .section-header__title {
        font-size: 1.8rem;
    }

    .services {
        padding: 60px 0;
    }

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

    .why-us {
        padding: 60px 0;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us__image-placeholder {
        height: 300px;
    }

    .process {
        padding: 60px 0;
    }

    .process__steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials {
        padding: 60px 0;
    }

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

    .testimonials__grid--ticker .testimonial-card {
        width: min(320px, 88vw);
        flex: 0 0 min(320px, 88vw);
    }

    .testimonials__grid--ticker .testimonials__ticker-track {
        animation-duration: 22s;
        gap: 16px;
    }

    .testimonials__summary {
        padding: 24px;
    }

    .testimonials__summary-score {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .testimonials__summary-link {
        width: 100%;
        justify-content: center;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .cta-banner__title {
        font-size: 1.8rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-banner__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero__brand-block {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
    }

    .hero__brand-label {
        justify-content: center;
        letter-spacing: 0.1em;
        font-size: 0.68rem;
    }

    .hero__brand-copy {
        align-items: center;
    }

    .hero__brand-name {
        font-size: 1.65rem;
    }

    .homepage .hero__brand-block {
        min-width: 0;
        width: 100%;
        max-width: none;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 0;
        padding: 8px 12px 8px 8px;
        border-radius: 22px;
        text-align: left;
        background: linear-gradient(135deg, rgba(8, 12, 22, 0.78), rgba(19, 24, 38, 0.58));
        border-color: rgba(255, 255, 255, 0.26);
        box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
        overflow: visible;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .homepage .hero__brand-mark {
        flex: 0 0 58px;
        width: 58px;
        height: 44px;
        border-radius: 16px;
    }

    .homepage .hero__brand-mark::after {
        border-radius: 15px;
    }

    .homepage .hero__brand-logo {
        width: 48px;
        height: auto;
        max-height: 34px;
    }

    .homepage .hero__brand-copy {
        align-items: flex-start;
        gap: 3px;
        flex: 1 1 auto;
        min-width: 0;
        overflow: visible;
        text-align: left;
    }

    .homepage .hero__brand-label {
        justify-content: flex-start;
        color: rgba(255, 251, 246, 0.98);
        letter-spacing: 0.05em;
        line-height: 1.35;
        font-size: clamp(0.54rem, 1.9vw, 0.62rem);
        text-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
        width: 100%;
        white-space: nowrap;
    }

    .homepage .hero__brand-label::before,
    .homepage .hero__brand-label::after {
        flex: 1 1 14px;
        width: auto;
        max-width: 20px;
    }

    .homepage .hero__brand-name {
        font-size: clamp(1.08rem, 5vw, 1.26rem);
        letter-spacing: 0.016em;
        white-space: nowrap;
    }

    .hero__title {
        font-size: clamp(1.55rem, 7vw, 1.9rem);
        line-height: 1.1;
        max-width: 17ch;
        margin-bottom: 14px;
    }

    .homepage .hero {
        padding-top: clamp(72px, 10svh, 84px);
    }

    .homepage .hero > .container {
        min-height: calc(var(--ma-viewport-height, 100svh) - clamp(72px, 10svh, 84px));
    }

    .homepage .hero__content {
        justify-content: flex-start;
        gap: 16px;
        padding: 20px 0 22px;
    }

    .homepage .hero__copy {
        gap: 12px;
    }

    .homepage .hero__title {
        font-size: clamp(1.86rem, 7.6vw, 2.08rem);
        max-width: 14.2ch;
        margin: 0;
    }

    .homepage .hero__subtitle {
        font-size: 0.92rem;
        line-height: 1.52;
        margin: 0;
        max-width: 100%;
    }

    .homepage .hero__qualities {
        grid-template-columns: 1fr;
        gap: 6px;
        margin: 4px 0 0;
    }

    .homepage .hero__qualities > :last-child {
        grid-column: auto;
    }

    .homepage .hero__quality {
        min-height: 35px;
        padding: 8px 8px;
        font-size: 0.67rem;
        gap: 4px;
    }

    .homepage .hero__quality i {
        width: 15px;
        height: 15px;
        font-size: 0.52rem;
    }

    .homepage .hero__engage {
        gap: 10px;
        margin-top: auto;
        padding-top: clamp(6px, 1.6svh, 12px);
    }

    .hero__actions {
        flex-direction: column;
        gap: 10px;
    }

    .homepage .hero__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 0;
    }

    .homepage .hero__actions > :first-child {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .homepage .hero__actions > :nth-child(2) {
        grid-column: 1;
        grid-row: 1;
    }

    .homepage .hero__actions > :nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }

    .btn--lg {
        padding: 10px 12px;
        font-size: 0.82rem;
        width: 100%;
        justify-content: center;
    }

    .homepage .hero__actions .btn--primary {
        min-height: 48px;
        font-size: 0.87rem;
    }

    .homepage .hero__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 2px;
    }

    .homepage .hero__stat-number {
        font-size: 1.22rem;
    }

    .homepage .hero__stat-label {
        font-size: 0.62rem;
        line-height: 1.16;
    }

    .project-gallery__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .homepage .hero {
        min-height: var(--ma-viewport-height, 100svh);
        padding-top: clamp(74px, 9.5svh, 88px);
    }

    html.is-mobile-viewport .homepage .hero {
        min-height: var(--ma-viewport-height, 100vh);
    }

    .homepage .hero > .container {
        min-height: calc(var(--ma-viewport-height, 100svh) - clamp(74px, 9.5svh, 88px));
    }

    .homepage .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        gap: clamp(18px, 2.6svh, 24px);
        padding: clamp(18px, 3svh, 28px) 0 clamp(22px, 3.4svh, 32px);
    }

    .homepage .hero__brand-block {
        min-width: 0;
        width: 100%;
        max-width: 520px;
        align-self: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: clamp(12px, 3vw, 18px);
        margin: 0;
        padding: clamp(10px, 2vw, 14px) clamp(14px, 3vw, 20px) clamp(10px, 2vw, 14px) clamp(10px, 2vw, 14px);
        border-radius: 24px;
        text-align: center;
        box-sizing: border-box;
    }

    .homepage .hero__brand-mark {
        flex: 0 0 clamp(68px, 17vw, 92px);
        width: clamp(68px, 17vw, 92px);
        height: clamp(54px, 13vw, 70px);
        border-radius: 22px;
    }

    .homepage .hero__brand-mark::after {
        border-radius: 21px;
    }

    .homepage .hero__brand-logo {
        width: clamp(58px, 15vw, 76px);
        max-height: clamp(40px, 10vw, 54px);
        height: auto;
    }

    .homepage .hero__brand-copy {
        flex: 1 1 auto;
        min-width: 0;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .homepage .hero__brand-label {
        width: 100%;
        justify-content: center;
        font-size: clamp(0.68rem, 2.05vw, 0.82rem);
        line-height: 1.25;
        letter-spacing: 0.08em;
        text-align: center;
        white-space: normal;
    }

    .homepage .hero__brand-label::before,
    .homepage .hero__brand-label::after {
        flex: 1 1 clamp(18px, 5vw, 32px);
        width: auto;
        max-width: 34px;
    }

    .homepage .hero__brand-name {
        width: 100%;
        text-align: center;
        font-size: clamp(1.42rem, 5.2vw, 2.05rem);
        letter-spacing: 0.025em;
        white-space: nowrap;
    }

    .homepage .hero__copy {
        gap: clamp(13px, 2.1svh, 18px);
    }

    .homepage .hero__title {
        max-width: 14.5ch;
        font-size: clamp(2.04rem, 7.1vw, 2.72rem);
        line-height: 1.06;
    }

    .homepage .hero__subtitle {
        max-width: 34rem;
        font-size: clamp(0.94rem, 2.65vw, 1.04rem);
        line-height: 1.5;
    }

    .homepage .hero__qualities {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: clamp(2px, 0.6svh, 6px) 0 0;
    }

    .homepage .hero__quality {
        justify-content: center;
        min-height: 38px;
        padding: 8px 10px;
        font-size: 0.74rem;
        line-height: 1.2;
    }

    .homepage .hero__engage {
        display: grid;
        width: 100%;
        max-width: 100%;
        gap: clamp(12px, 1.9svh, 18px);
        margin-top: clamp(4px, 0.8svh, 10px);
        padding-top: 0;
    }

    .homepage .hero__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 0;
    }

    .homepage .hero__actions > :first-child {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .homepage .hero__actions > :nth-child(2) {
        grid-column: 1;
        grid-row: 1;
    }

    .homepage .hero__actions > :nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }

    .homepage .hero__actions .btn {
        min-width: 0;
        min-height: 46px;
    }

    .homepage .hero__actions .btn--primary {
        min-height: 52px;
        font-size: 0.92rem;
    }

    .homepage .hero__actions .btn--outline {
        font-size: 0.84rem;
    }

    .homepage .hero__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        align-items: start;
        margin-top: 0;
    }

    .homepage .hero__stat {
        padding: 0 4px;
    }

    .homepage .hero__stat-number {
        font-size: clamp(1.22rem, 4vw, 1.44rem);
    }

    .homepage .hero__stat-label {
        font-size: clamp(0.62rem, 1.8vw, 0.7rem);
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .homepage .hero {
        padding-top: clamp(68px, 9svh, 80px);
    }

    .homepage .hero > .container {
        min-height: calc(var(--ma-viewport-height, 100svh) - clamp(68px, 9svh, 80px));
    }

    .homepage .hero__content {
        gap: clamp(15px, 2.2svh, 20px);
        padding: 16px 0 20px;
    }

    .homepage .hero__brand-block {
        gap: 10px;
        padding: 9px 12px 9px 9px;
        border-radius: 21px;
    }

    .homepage .hero__brand-mark {
        flex-basis: clamp(66px, 18vw, 74px);
        width: clamp(66px, 18vw, 74px);
        height: clamp(50px, 14vw, 56px);
        border-radius: 18px;
    }

    .homepage .hero__brand-mark::after {
        border-radius: 17px;
    }

    .homepage .hero__brand-logo {
        width: clamp(56px, 15.5vw, 62px);
        max-height: clamp(38px, 11vw, 46px);
    }

    .homepage .hero__brand-copy {
        gap: 4px;
    }

    .homepage .hero__brand-label {
        font-size: clamp(0.59rem, 2.55vw, 0.68rem);
        letter-spacing: 0.045em;
    }

    .homepage .hero__brand-label::before,
    .homepage .hero__brand-label::after {
        flex-basis: clamp(12px, 4vw, 20px);
        max-width: 22px;
    }

    .homepage .hero__brand-name {
        font-size: clamp(1.34rem, 6vw, 1.58rem);
    }

    .homepage .hero__copy {
        gap: 12px;
    }

    .homepage .hero__title {
        max-width: 14.2ch;
        font-size: clamp(1.88rem, 7.9vw, 2.16rem);
        line-height: 1.07;
    }

    .homepage .hero__subtitle {
        font-size: 0.92rem;
        line-height: 1.48;
    }

    .homepage .hero__qualities {
        gap: 6px;
        margin-top: 2px;
    }

    .homepage .hero__quality {
        min-height: 35px;
        padding: 7px 9px;
        font-size: 0.68rem;
        gap: 5px;
    }

    .homepage .hero__quality i {
        width: 15px;
        height: 15px;
        font-size: 0.52rem;
    }

    .homepage .hero__engage {
        gap: 10px;
        margin-top: 4px;
        padding-top: 0;
    }

    .homepage .hero__actions {
        gap: 8px;
    }

    .homepage .hero__actions .btn {
        padding: 10px 10px;
        font-size: 0.79rem;
    }

    .homepage .hero__actions .btn--primary {
        min-height: 49px;
        font-size: 0.86rem;
    }

    .homepage .hero__stats {
        gap: 7px;
    }

    .homepage .hero__stat-number {
        font-size: 1.22rem;
    }

    .homepage .hero__stat-label {
        font-size: 0.61rem;
        line-height: 1.16;
    }
}

@media (min-width: 769px) {
    .homepage .hero__content,
    .homepage .hero__copy,
    .homepage .hero__engage {
        gap: 0;
    }
}

@media (max-width: 768px) {
    .homepage .hero__content {
        gap: clamp(44px, 6svh, 62px);
    }

    .homepage .hero__copy {
        gap: clamp(26px, 4svh, 40px);
    }

    .homepage .hero__qualities {
        margin: 0;
        gap: 14px;
    }

    .homepage .hero__engage {
        margin-top: 0;
        padding-top: 0;
        gap: clamp(22px, 3.5svh, 36px);
    }

    .homepage .hero__actions {
        gap: 8px;
    }

    .homepage .hero__stats {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .homepage .hero__content {
        gap: 40px;
    }

    .homepage .hero__copy {
        gap: 24px;
    }

    .homepage .hero__qualities {
        gap: 13px;
    }

    .homepage .hero__engage {
        gap: 22px;
        margin-top: 0;
        padding-top: 0;
    }
}

@media (min-width: 769px) {
    .homepage .hero {
        min-height: var(--ma-viewport-height, 100vh);
        align-items: stretch;
        padding-top: clamp(132px, 15vh, 168px);
        padding-bottom: clamp(48px, 6vh, 76px);
    }

    .homepage .hero > .container {
        min-height: calc(var(--ma-viewport-height, 100vh) - clamp(132px, 15vh, 168px) - clamp(48px, 6vh, 76px));
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .homepage .hero__content {
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .homepage .hero__title {
        max-width: 14.5ch;
    }

    .homepage .hero__subtitle {
        max-width: 680px;
    }
}

@media (max-width: 768px) {
    .homepage .hero {
        align-items: center;
        padding-top: 0;
    }

    .homepage .hero > .container {
        min-height: var(--ma-viewport-height, 100svh);
        align-items: center;
        justify-content: center;
    }

    .homepage .hero__content {
        min-height: auto;
        padding-top: clamp(86px, 11svh, 112px);
        padding-bottom: clamp(32px, 5svh, 48px);
    }
}

@media (max-width: 480px) {
    .homepage .hero__content {
        padding-top: clamp(78px, 10svh, 96px);
        padding-bottom: clamp(24px, 4svh, 36px);
    }
}

/* ============================================
   3D CONFIGURATOR (Three.js)
   ============================================ */
.cfg {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(232, 97, 26, 0.28), transparent 26%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(135deg, #151726 0%, #1d2033 46%, #26202b 100%);
    overflow: hidden;
}

.cfg::before,
.cfg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(12px);
}

.cfg::before {
    width: 320px;
    height: 320px;
    top: 90px;
    left: -90px;
    background: rgba(232, 97, 26, 0.14);
}

.cfg::after {
    width: 280px;
    height: 280px;
    right: -60px;
    bottom: 80px;
    background: rgba(255, 255, 255, 0.06);
}

.cfg .section-header {
    position: relative;
    z-index: 1;
}

.cfg .section-header__tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff2e8;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.cfg .section-header__title {
    color: var(--color-white);
}

.cfg .section-header__desc {
    color: rgba(255, 255, 255, 0.78);
}

.cfg__intro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 34px;
}

.cfg__intro-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
}

.cfg__intro-card strong {
    display: block;
    font-size: 0.96rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.cfg__intro-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Wrapper: canvas left, panel right */
.cfg__wrapper {
    display: grid;
    grid-template-columns: 1.28fr 0.98fr;
    gap: 34px;
    align-items: start;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* --- Three.js Canvas --- */
.cfg__canvas-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at top center, rgba(255,255,255,0.92), rgba(247,247,249,0.95) 42%, rgba(233,236,241,0.95) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(232, 97, 26, 0.14);
}

.cfg__canvas-wrap.is-updating {
    animation: cfgSelectionPulse 0.65s ease;
}

.cfg__canvas-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.45), transparent 35%, transparent 70%, rgba(26,26,46,0.08));
    pointer-events: none;
    z-index: 1;
}

.cfg__canvas-wrap canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: grab;
    position: relative;
    z-index: 0;
}

.cfg__canvas-wrap canvas:active {
    cursor: grabbing;
}

.cfg__canvas-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.85);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    transition: opacity 0.5s ease;
    white-space: nowrap;
    z-index: 3;
}

.cfg__canvas-hint i {
    color: var(--color-orange);
}

.cfg__canvas-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 3;
}

.cfg__canvas-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(232, 97, 26, 0.12);
    box-shadow: var(--shadow-sm);
    color: var(--color-dark);
    font-size: 0.8rem;
    font-weight: 700;
}

.cfg__canvas-badges i {
    color: var(--color-orange);
}

.cfg__canvas-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 58px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(232, 97, 26, 0.12);
    color: var(--color-gray-600);
    font-size: 0.82rem;
    line-height: 1.65;
    z-index: 2;
}

/* --- UI Panel --- */
.cfg__panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cfg__panel-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,248,241,0.96) 100%);
    border: 1px solid rgba(232, 97, 26, 0.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.cfg__panel-section.is-updating {
    animation: cfgPanelFlash 0.45s ease;
}

.cfg__panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.cfg__panel-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.cfg__house-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cfg__house-type-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    background: var(--color-gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: none;
    font-family: var(--font-primary);
    text-align: left;
}

.cfg__house-type-btn:hover {
    border-color: var(--color-gray-300);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.cfg__house-type-btn--active {
    border-color: var(--color-orange);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(232, 97, 26, 0.12);
}

.cfg__house-type-btn i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(232, 97, 26, 0.1);
    color: var(--color-orange);
    flex-shrink: 0;
}

.cfg__house-type-btn span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cfg__house-type-btn strong {
    font-size: 0.9rem;
    color: var(--color-dark);
}

.cfg__house-type-btn small {
    font-size: 0.78rem;
    color: var(--color-gray-400);
}

.cfg__select-group {
    display: grid;
    gap: 10px;
}

.cfg__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
}

.cfg__select {
    width: 100%;
    border: 1px solid rgba(232, 97, 26, 0.14);
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 15px 16px;
    font-family: var(--font-primary);
    font-size: 0.94rem;
    color: var(--color-dark);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.cfg__select:focus {
    border-color: rgba(232, 97, 26, 0.45);
    box-shadow: 0 0 0 3px rgba(232, 97, 26, 0.1);
}

.cfg__select-note {
    color: var(--color-gray-600);
    font-size: 0.82rem;
    line-height: 1.65;
}

/* --- Color / Material Buttons --- */
.cfg__colors {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cfg__color-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 12px 14px;
    background: var(--color-gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: none;
    font-family: var(--font-primary);
    text-align: left;
}

.cfg__color-btn:hover {
    border-color: var(--color-gray-300);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.cfg__color-btn--active {
    border-color: var(--color-orange);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(232, 97, 26, 0.12);
}

.cfg__color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,255,255,0.6);
}

.cfg__color-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cfg__color-info strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
}

.cfg__color-info small {
    font-size: 0.78rem;
    color: var(--color-gray-400);
}

/* --- Area Input & Slider --- */
.cfg__area-input {
    margin-bottom: 20px;
}

.cfg__area-input > label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gray-600);
    margin-bottom: 8px;
}

.cfg__area-wrap {
    display: flex;
    align-items: center;
    background: var(--color-gray-100);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    transition: border-color var(--transition);
}

.cfg__area-wrap:focus-within {
    border-color: var(--color-orange);
}

.cfg__area-wrap i {
    color: var(--color-gray-400);
    font-size: 0.9rem;
}

.cfg__area-wrap input {
    flex: 1;
    padding: 12px 10px;
    border: none;
    background: none;
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.cfg__area-wrap input::-webkit-outer-spin-button,
.cfg__area-wrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.cfg__area-wrap span {
    font-weight: 600;
    color: var(--color-gray-400);
}

.cfg__slider {
    width: 100%;
    margin-top: 12px;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--color-gray-200);
    border-radius: 3px;
    outline: none;
}

.cfg__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-orange);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(232, 97, 26, 0.35);
}

.cfg__slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-orange);
    cursor: pointer;
    border: none;
}

/* --- Cost Display --- */
.cfg__cost {
    background: linear-gradient(180deg, #ffffff 0%, #fff4ea 100%);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(232, 97, 26, 0.12);
}

.cfg__cost.is-updating {
    animation: cfgTotalPulse 0.45s ease;
}

.cfg__cost-line {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid var(--color-gray-200);
    font-size: 0.88rem;
    color: var(--color-gray-600);
}

.cfg__cost-line span:last-child {
    font-weight: 600;
    color: var(--color-dark);
}

.cfg__cost-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 4px;
}

.cfg__cost-total span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cfg__cost-total strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-orange);
    transition: transform 0.2s ease;
}

.cfg__cost-note {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    font-style: italic;
    margin-top: 10px;
}

@keyframes cfgSelectionPulse {
    0% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
    40% {
        transform: scale(1.01);
        box-shadow: 0 22px 46px rgba(232, 97, 26, 0.18);
    }
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
}

@keyframes cfgTotalPulse {
    0% {
        transform: translateY(0);
    }
    45% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes cfgPanelFlash {
    0% {
        box-shadow: var(--shadow-md);
    }
    50% {
        box-shadow: 0 18px 38px rgba(232, 97, 26, 0.14);
    }
    100% {
        box-shadow: var(--shadow-md);
    }
}

/* --- CTA Button --- */
.cfg__cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .cfg__intro {
        grid-template-columns: 1fr;
    }

    .cfg__wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .cfg {
        padding: 60px 0;
    }

    .cfg__wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cfg__canvas-caption {
        position: static;
        margin: 14px;
    }

    .cfg__canvas-wrap {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 480px) {
    .cfg__house-types {
        grid-template-columns: 1fr;
    }

    .cfg__canvas-badges {
        position: static;
        padding: 14px 14px 0;
    }

    .cfg__canvas-wrap {
        aspect-ratio: 4 / 3;
    }

    .cfg__panel-section {
        padding: 18px;
    }

    .cfg__color-btn {
        padding: 10px 12px;
    }
}

/* ============================================
   MODAL OFERTA
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--color-gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.modal__close:hover {
    background: var(--color-gray-200);
    color: var(--color-dark);
}

.modal__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), #f07830);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(232, 97, 26, 0.3);
}

.modal__title {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.modal__desc {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-gray-400);
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal__summary {
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 0.82rem;
    color: var(--color-gray-600);
    display: none;
}

.modal__summary.has-data {
    display: block;
}

.modal__summary span {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

.modal__summary strong {
    color: var(--color-orange);
    font-weight: 700;
}

.modal__field {
    margin-bottom: 18px;
}

.modal__field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.modal__field label i {
    color: var(--color-orange);
    margin-right: 6px;
    font-size: 0.8rem;
}

.modal__field input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-dark);
    background: var(--color-gray-100);
    transition: border-color 0.25s ease, background 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.modal__field input:focus {
    border-color: var(--color-orange);
    background: var(--color-white);
}

.modal__field input::placeholder {
    color: var(--color-gray-300);
    opacity: 0.55;
}

.modal__submit {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    font-size: 1rem;
}

.modal__submit:disabled {
    opacity: 0.72;
    cursor: wait;
}

.modal__submit.is-loading {
    pointer-events: none;
}

/* Success state */
.modal__success {
    display: none;
    text-align: center;
    padding: 10px 0;
}

.modal__success.show {
    display: block;
    animation: successIn 0.4s ease;
}

.modal__success i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 14px;
}

.modal__success h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.modal__success p {
    font-size: 0.88rem;
    color: var(--color-gray-400);
}

.modal__success.is-error i {
    color: #e74c3c;
}

@keyframes successIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
    .modal {
        padding: 30px 24px;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.99);
    transition:
        opacity 0.62s ease,
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.reveal--left {
    transform: translateX(-36px);
}

.reveal--right {
    transform: translateX(36px);
}

.reveal--scale {
    transform: translateY(24px) scale(0.96);
}

.reveal--up {
    transform: translateY(28px) scale(0.99);
}

.reveal--text {
    transform: translateY(18px);
    filter: blur(6px);
    transition:
        opacity 0.55s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.reveal--heading {
    transform: translateY(24px);
}

.heading-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.95em) rotate(1.8deg);
    filter: blur(5px);
    transition:
        opacity 0.42s ease,
        transform 0.66s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.66s ease;
    transition-delay: calc(var(--reveal-delay, 0s) + var(--word-delay, 0ms));
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal--text.revealed {
    transform: translateY(0);
    filter: blur(0);
}

.reveal--heading.revealed .heading-word {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    filter: blur(0);
}

/* ============================================
   PAGE ENTER TRANSITIONS
   ============================================ */
body.page-enter [data-page-enter] {
    opacity: 0;
    transform: translateY(24px) scale(0.995);
    filter: blur(8px);
    transition:
        opacity 0.62s ease,
        transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.82s ease;
    transition-delay: var(--page-enter-delay, 0s);
}

body.page-enter.page-enter-active [data-page-enter] {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.service-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.service-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.service-card.reveal:nth-child(6) { transition-delay: 0.4s; }

.process__step.reveal:nth-child(2) { transition-delay: 0.15s; }
.process__step.reveal:nth-child(3) { transition-delay: 0.3s; }
.process__step.reveal:nth-child(4) { transition-delay: 0.45s; }

.testimonial-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card.reveal:nth-child(3) { transition-delay: 0.3s; }

.cfg__intro-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.cfg__intro-card.reveal:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .hero__brand-block,
    .hero__title,
    .hero__subtitle,
    .hero__quality,
    .hero__actions,
    .hero__stats {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero__brand-mark::before {
        animation: none;
    }

    .header__new-badge {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .heading-word {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    body.page-enter [data-page-enter] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* ============================================
   PAGE HEADER & BREADCRUMBS (all sub-pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 160px 0 60px;
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(34, 34, 58, 0.88) 50%, rgba(42, 26, 14, 0.86) 100%),
        var(--page-header-image, none) center/cover no-repeat;
    background-color: var(--color-dark);
    background-blend-mode: multiply, normal;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(232, 97, 26, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header__overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="none" width="60" height="60"/><path d="M0 30 L30 0 L60 30 L30 60Z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    pointer-events: none;
}

.page-header__content {
    position: relative;
    z-index: 2;
}

body[data-project-id]:not([data-project-hydrated="1"]) .page-header__content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body[data-project-id][data-project-hydrated="1"] .page-header__content {
    opacity: 1;
    visibility: visible;
    animation: none;
}

body[data-project-id]:not([data-project-hydrated="1"]) .cta-banner,
body[data-project-id]:not([data-project-hydrated="1"]) footer.footer,
body[data-project-id]:not([data-project-hydrated="1"]) #backToTop,
body[data-project-id]:not([data-project-hydrated="1"]) #ofertaModal {
    display: none;
}

.page-header__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-white);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-header__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 0;
}

.page-header__breadcrumb {
    margin-top: 20px;
}

/* Breadcrumbs */
.breadcrumb,
.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
}

.breadcrumb__item a,
.breadcrumb__link {
    color: rgba(255, 255, 255, 0.88);
    transition: color var(--transition);
}

.breadcrumb__item a:hover,
.breadcrumb__link:hover {
    color: #ffd7b8;
}

.breadcrumb__item + .breadcrumb__item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.88);
    opacity: 0.6;
    margin-right: 0;
}

.breadcrumb__item--active {
    color: #ffd7b8;
    font-weight: 600;
}

.product-drainage-page .page-header,
.contact-page .page-header,
.privacy-page .page-header {
    margin-bottom: 26px;
}

.calculator-page main {
    padding-top: 20px;
}

.privacy-policy__content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-gray-600);
    line-height: 1.8;
}

.privacy-policy__content h3 {
    color: var(--color-dark);
    margin: 24px 0 10px;
    font-size: 1.2rem;
}

.privacy-policy__links {
    margin-top: 24px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-200);
    background: var(--color-gray-100);
}

.privacy-policy__links ul {
    list-style: disc;
    padding-left: 20px;
}

.privacy-policy__links li + li {
    margin-top: 8px;
}

.privacy-policy__links a {
    color: var(--color-orange);
    font-weight: 600;
}

.privacy-policy__links a:hover {
    color: var(--color-orange-dark);
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 40px;
    }

    .product-drainage-page .page-header,
    .contact-page .page-header,
    .privacy-page .page-header {
        margin-bottom: 18px;
    }

    .calculator-page main {
        padding-top: 14px;
    }

    .page-header__title {
        font-size: 2rem;
    }
}

/* ============================================
   PRODUCT PACKAGE - TIGLA METALICA
   ============================================ */
.product-modular-page .product-intro {
    padding: 92px 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(232, 97, 26, 0.14), transparent 38%),
        linear-gradient(180deg, #fffdfb 0%, #f7f8fc 100%);
}

.product-modular-page .product-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 30px;
    align-items: stretch;
}

.product-modular-page .product-intro__content {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 32px;
}

.product-modular-page .product-intro__lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--color-gray-800);
    margin-bottom: 18px;
}

.product-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.product-hero-highlights__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: 600;
}

.product-hero-highlights__item i {
    color: var(--color-orange);
}

.product-intro__highlights {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
}

.product-intro__highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(247, 247, 249, 1), rgba(255, 255, 255, 1));
    border: 1px solid #e6e8ef;
    color: var(--color-gray-800);
}

.product-intro__highlight i {
    color: var(--color-orange);
    margin-top: 2px;
}

.product-modular-page .product-intro__highlight span {
    line-height: 1.55;
}

.product-modular-page .product-intro__stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-modular-page .product-intro__stat {
    border: 1px solid #eceff5;
    border-radius: var(--radius-md);
    background: #fafbfe;
    padding: 14px 12px;
    text-align: center;
}

.product-modular-page .product-intro__stat strong {
    display: block;
    color: var(--color-dark);
    font-size: 1.08rem;
    line-height: 1.2;
    margin-bottom: 4px;
}

.product-modular-page .product-intro__stat span {
    color: var(--color-gray-600);
    font-size: 0.82rem;
    line-height: 1.35;
}

.product-modular-page .product-intro__image {
    min-height: 100%;
}

.product-modular-page .product-intro__image-placeholder {
    height: 100%;
    min-height: 420px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(232, 97, 26, 0.18);
    background:
        linear-gradient(160deg, rgba(22, 31, 50, 0.92), rgba(36, 21, 13, 0.86)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 14px, rgba(255, 255, 255, 0) 14px, rgba(255, 255, 255, 0) 28px);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.product-modular-page .product-intro__image-placeholder i {
    font-size: 2rem;
    color: var(--color-orange-light);
}

.product-modular-page .product-intro__image-placeholder span {
    font-weight: 700;
    letter-spacing: 0.04em;
}

@media (max-width: 992px) {
    .product-modular-page .product-intro__grid {
        grid-template-columns: 1fr;
    }

    .product-modular-page .product-intro__image-placeholder {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .product-modular-page .product-intro {
        padding: 64px 0;
    }

    .product-modular-page .product-intro__content {
        padding: 22px;
    }

    .product-modular-page .product-intro__stats {
        grid-template-columns: 1fr;
    }
}

.product-modular-page .product-features {
    padding: 92px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafd 100%);
}

.product-modular-page .product-features__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.product-modular-page .product-features__meta-card {
    background: var(--color-white);
    border: 1px solid #e6e9f0;
    border-radius: var(--radius-md);
    padding: 18px 16px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 6px;
}

.product-modular-page .product-features__meta-card i {
    color: var(--color-orange);
}

.product-modular-page .product-features__meta-card strong {
    color: var(--color-dark);
    font-size: 1.05rem;
}

.product-modular-page .product-features__meta-card span {
    color: var(--color-gray-600);
    font-size: 0.88rem;
    line-height: 1.45;
}

.product-modular-page .product-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.product-modular-page .product-table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.94rem;
    line-height: 1.45;
}

.product-modular-page .product-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.product-modular-page .product-table thead th:first-child {
    border-top-left-radius: 14px;
}

.product-modular-page .product-table thead th:last-child {
    border-top-right-radius: 14px;
}

.product-modular-page .product-table tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid #edf0f5;
    color: var(--color-gray-700);
    vertical-align: middle;
}

.product-modular-page .product-table tbody tr:last-child td {
    border-bottom: 0;
}

.product-modular-page .product-table tbody tr {
    transition: background-color var(--transition);
}

.product-modular-page .product-table tbody tr:hover {
    background-color: #f3f7ff;
}

.product-modular-page .product-features .product-table-wrap {
    background: var(--color-white);
    border: 1px solid #e8eaf1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.product-modular-page .product-features .product-table thead th {
    background: linear-gradient(180deg, #202c41, #172033);
    color: #ffffff;
}

.product-modular-page .product-features .product-table tbody tr:nth-child(even) {
    background: #fbfcff;
}

.product-modular-page .product-features .product-table td:first-child {
    font-weight: 700;
    color: var(--color-dark);
    width: 34%;
}

.product-modular-page .product-pricing .product-table td:last-child {
    font-weight: 800;
    color: #b44710;
}

.product-modular-page .product-colors-section {
    padding: 92px 0;
    background:
        radial-gradient(circle at 82% 12%, rgba(232, 97, 26, 0.12), transparent 28%),
        linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}

.product-modular-page .product-colors-section__intro {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.product-modular-page .product-colors-section__intro span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #e6e8ef;
    border-radius: 999px;
    padding: 8px 14px;
}

.product-modular-page .product-colors-section__intro i {
    color: var(--color-orange);
}

.product-modular-page .product-colors-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.product-modular-page .product-colors-section__group {
    background: #ffffff;
    border: 1px solid #e5e8ef;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.product-modular-page .product-colors-section__badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    background: rgba(232, 97, 26, 0.1);
    border: 1px solid rgba(232, 97, 26, 0.22);
    border-radius: 999px;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-modular-page .product-colors-section__subtitle {
    color: var(--color-dark);
    margin-bottom: 16px;
}

.product-modular-page .product-colors {
    display: grid;
    gap: 12px;
}

.product-modular-page .product-colors__swatch {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #edf0f5;
    background: #fafbff;
}

.product-modular-page .product-colors__circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.16);
}

.product-modular-page .product-colors__name {
    color: var(--color-gray-800);
    font-weight: 600;
    font-size: 0.92rem;
}

@media (max-width: 992px) {
    .product-modular-page .product-features__meta,
    .product-modular-page .product-colors-section__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-modular-page .product-features,
    .product-modular-page .product-colors-section {
        padding: 64px 0;
    }

    .product-modular-page .product-table {
        min-width: 560px;
        font-size: 0.88rem;
    }

    .product-modular-page .product-table thead th,
    .product-modular-page .product-table tbody td {
        padding: 11px 12px;
    }
}

.product-modular-page .product-pricing {
    padding: 96px 0;
    background:
        radial-gradient(circle at 15% 12%, rgba(232, 97, 26, 0.18), transparent 26%),
        linear-gradient(160deg, #111827 0%, #1b2235 58%, #2a1a11 100%);
}

.product-modular-page .product-pricing .section-header {
    margin-bottom: 32px;
}

.product-modular-page .product-pricing__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-modular-page .product-pricing__chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
}

.product-modular-page .product-pricing__chips i {
    color: var(--color-orange-light);
}

.product-modular-page .product-pricing .product-table-wrap {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    box-shadow: 0 22px 46px rgba(10, 15, 24, 0.36);
}

.product-modular-page .product-pricing .product-table {
    background: rgba(255, 255, 255, 0.96);
}

.product-modular-page .product-pricing .product-table thead th {
    background: linear-gradient(180deg, #ff8f50, #e8611a);
    color: #ffffff;
    letter-spacing: 0.02em;
}

.product-modular-page .product-pricing .product-table tbody tr:nth-child(even) {
    background: #f9f4ef;
}

.product-modular-page .product-pricing .text-accent {
    color: #b44710;
    font-size: 1.02rem;
}

.product-modular-page .product-pricing__note {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(232, 97, 26, 0.25);
    box-shadow: 0 12px 30px rgba(10, 15, 24, 0.18);
}

.product-modular-page .product-links {
    padding: 96px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.product-modular-page .product-links .section-header {
    margin-bottom: 20px;
}

.product-modular-page .product-links__intro {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
    color: var(--color-gray-600);
    line-height: 1.75;
    background: #ffffff;
    border: 1px solid #e7eaf1;
    border-radius: var(--radius-md);
    padding: 14px 18px;
}

.product-modular-page .product-links__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-modular-page .product-links__card {
    display: block;
    position: relative;
    height: 100%;
    padding: 24px 22px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid #e7eaf1;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-modular-page .product-links__card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 97, 26, 0.28);
    box-shadow: var(--shadow-lg);
}

.product-modular-page .product-links__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, rgba(232, 97, 26, 0.16), rgba(255, 122, 51, 0.2));
    color: var(--color-orange);
    margin-bottom: 14px;
}

.product-modular-page .product-links__icon i {
    font-size: 1.15rem;
}

.product-modular-page .product-links__title {
    color: var(--color-dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.product-modular-page .product-links__desc {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-modular-page .product-links__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--color-orange);
    border: 1px solid rgba(232, 97, 26, 0.3);
    background: rgba(232, 97, 26, 0.06);
}

@media (max-width: 992px) {
    .product-modular-page .product-links__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-modular-page .product-pricing,
    .product-modular-page .product-links {
        padding: 64px 0;
    }

    .product-modular-page .product-pricing__chips span {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PRODUCT PAGE - SINDRILA BITUMINOASA
   ============================================ */
.product-shingle-page .product-intro {
    padding: 92px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(214, 96, 48, 0.14), transparent 36%),
        linear-gradient(180deg, #fffdfb 0%, #f8f9fd 100%);
}

.product-shingle-page .product-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.product-shingle-page .product-intro__content {
    background: #ffffff;
    border: 1px solid #e8eaf1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.product-shingle-page .product-intro__lead {
    font-size: 1.06rem;
    line-height: 1.8;
    color: var(--color-gray-800);
    margin-bottom: 16px;
}

.product-shingle-page .product-intro__highlights {
    margin: 0 0 16px;
}

.product-shingle-page .product-intro__highlight {
    background: linear-gradient(180deg, #f7f8fb, #ffffff);
    border-color: #e7eaf0;
}

.product-shingle-page .product-intro__highlight i {
    margin-top: 2px;
}

.product-shingle-page .product-intro__stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-shingle-page .product-intro__stat {
    background: #f9fafc;
    border: 1px solid #e8ebf2;
    border-radius: var(--radius-md);
    text-align: center;
    padding: 12px 10px;
}

.product-shingle-page .product-intro__stat strong {
    display: block;
    color: var(--color-dark);
    margin-bottom: 4px;
    font-size: 1rem;
}

.product-shingle-page .product-intro__stat span {
    font-size: 0.82rem;
    color: var(--color-gray-600);
    line-height: 1.35;
}

.product-shingle-page .product-intro__image-media {
    min-height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #d7dde7;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.product-shingle-page .product-intro__image-media img {
    width: 100%;
    height: 100%;
    max-height: 388px;
    object-fit: contain;
    display: block;
}

.product-shingle-page .product-features {
    padding: 92px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.product-shingle-page .product-video-showcase {
    padding: 20px 0 76px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 249, 253, 0.92) 100%);
}

.product-shingle-page .product-video-showcase .section-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.product-shingle-page .product-video-showcase__frame {
    position: relative;
    max-width: 390px;
    margin: 0 auto;
    padding: 38px 14px 26px;
    border-radius: 46px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, #05070d 0%, #171d29 46%, #06080d 100%);
    box-shadow:
        0 28px 76px rgba(17, 24, 39, 0.24),
        0 10px 28px rgba(0, 0, 0, 0.18),
        inset 0 0 0 2px rgba(255, 255, 255, 0.06),
        inset 0 0 0 8px rgba(0, 0, 0, 0.34);
}

.product-shingle-page .product-video-showcase__media {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    object-position: center center;
    border-radius: 28px;
    background: #0d1118;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.product-shingle-page .product-features__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.product-shingle-page .product-features__meta-card {
    border: 1px solid #e7eaf1;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 16px;
    display: grid;
    gap: 5px;
}

.product-shingle-page .product-features__meta-card i {
    color: var(--color-orange);
}

.product-shingle-page .product-features__meta-card strong {
    color: var(--color-dark);
    font-size: 1rem;
}

.product-shingle-page .product-features__meta-card span {
    color: var(--color-gray-600);
    font-size: 0.86rem;
}

.product-shingle-page .product-features__block {
    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 18px;
}

.product-shingle-page .metal-tile-models {
    padding: 20px 0 92px;
    background:
        radial-gradient(circle at 88% 14%, rgba(232, 97, 26, 0.13), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.product-shingle-page .metal-tile-models__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.product-shingle-page .metal-tile-models__card {
    background: #ffffff;
    border: 1px solid #e3e9f2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-shingle-page .metal-tile-models__card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 97, 26, 0.3);
    box-shadow: var(--shadow-lg);
}

.product-shingle-page .metal-tile-models__media {
    background: linear-gradient(180deg, #f3f8fc 0%, #e8f0f7 100%);
    aspect-ratio: 16 / 9;
}

.product-shingle-page .metal-tile-models__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-shingle-page .metal-tile-models__body {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.product-shingle-page .metal-tile-models__title {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-shingle-page .metal-tile-models__title::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    flex-shrink: 0;
}

.product-shingle-page .metal-tile-models__desc {
    color: var(--color-gray-600);
    line-height: 1.72;
    margin: 0;
}

.product-shingle-page .metal-tile-models__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4px;
    border-top: 1px solid #e9edf4;
}

.product-shingle-page .metal-tile-models__table td {
    padding: 7px 0;
    border-bottom: 1px solid #e9edf4;
    font-size: 0.9rem;
}

.product-shingle-page .metal-tile-models__table td:first-child {
    color: var(--color-gray-600);
    font-weight: 600;
    width: 36%;
}

.product-shingle-page .metal-tile-models__table td:last-child {
    color: var(--color-dark);
    font-weight: 700;
    text-align: right;
}

.product-shingle-page .shingle-visual-colors {
    padding: 12px 0 92px;
    background:
        radial-gradient(circle at 12% 16%, rgba(232, 97, 26, 0.1), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.product-shingle-page .shingle-visual-colors__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-shingle-page .shingle-visual-colors__group {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 20px;
}

.product-shingle-page .shingle-visual-colors__group h3 {
    margin: 0 0 6px;
    color: var(--color-dark);
    font-size: 1.1rem;
}

.product-shingle-page .shingle-visual-colors__group p {
    margin: 0 0 12px;
    color: var(--color-gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-shingle-page .shingle-visual-colors__list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.product-shingle-page .shingle-visual-colors__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-gray-700);
    line-height: 1.35;
}

.product-shingle-page .shingle-visual-colors__swatch {
    width: 34px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 6px;
    border: 1px solid rgba(17, 24, 39, 0.24);
    background: var(--swatch, #9ca3af);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 1px 2px rgba(15, 23, 42, 0.14);
}

.product-shingle-page .product-features__subtitle {
    margin-bottom: 12px;
    color: var(--color-dark);
}

.product-shingle-page .product-features__subtitle i {
    color: var(--color-orange);
    margin-right: 8px;
}

.product-shingle-page .product-features__list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.product-shingle-page .product-features__list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.65;
    color: var(--color-gray-700);
}

.product-shingle-page .product-features__list i {
    color: var(--color-orange);
    margin-top: 4px;
}

.product-shingle-page .product-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.product-shingle-page .product-table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0;
}

.product-shingle-page .product-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #ffffff;
    background: linear-gradient(180deg, #22304a, #172033);
}

.product-shingle-page .product-table thead th:first-child { border-top-left-radius: 14px; }
.product-shingle-page .product-table thead th:last-child { border-top-right-radius: 14px; }

.product-shingle-page .product-table tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid #edf0f5;
    color: var(--color-gray-700);
}

.product-shingle-page .product-table tbody tr:nth-child(even) {
    background: #fbfcff;
}

.product-shingle-page .product-table tbody tr:hover {
    background: #f3f7ff;
}

.product-shingle-page .product-table tbody td:first-child {
    font-weight: 700;
    color: var(--color-dark);
}

.product-shingle-page .product-colors-section {
    padding: 92px 0;
    background:
        radial-gradient(circle at 86% 12%, rgba(232, 97, 26, 0.12), transparent 30%),
        linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}

.product-shingle-page .product-colors-section__intro {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.product-shingle-page .product-colors-section__intro span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #e6e8ef;
    border-radius: 999px;
    padding: 8px 14px;
}

.product-shingle-page .product-colors-section__intro i {
    color: var(--color-orange);
}

.product-shingle-page .product-colors--panel {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 18px;
}

.product-shingle-page .product-colors__swatch {
    border: 1px solid #edf0f5;
    background: #fafbff;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.product-shingle-page .product-colors-section__note {
    margin-top: 14px;
    text-align: center;
    color: var(--color-gray-600);
}

.product-shingle-page .shingle-colors-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-shingle-page .shingle-colors-group {
    background: #ffffff;
    border: 1px solid #e5e9f0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    display: grid;
    gap: 12px;
}

.product-shingle-page .shingle-colors-group h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--color-dark);
}

.product-shingle-page .shingle-colors-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.product-shingle-page .shingle-colors-list li {
    position: relative;
    color: var(--color-gray-700);
    line-height: 1.45;
    font-size: 0.9rem;
    padding-left: 16px;
}

.product-shingle-page .shingle-colors-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    position: absolute;
    left: 0;
    top: 0.52em;
}

.product-shingle-page .shingle-colors-group p {
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.55;
    padding-top: 10px;
    border-top: 1px solid #edf0f5;
}

.product-shingle-page .product-pricing {
    padding: 96px 0;
    background:
        radial-gradient(circle at 15% 12%, rgba(232, 97, 26, 0.18), transparent 26%),
        linear-gradient(160deg, #111827 0%, #1b2235 58%, #2a1a11 100%);
}

.product-shingle-page .product-pricing__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-shingle-page .product-pricing__chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
}

.product-shingle-page .product-pricing__chips i {
    color: var(--color-orange-light);
}

.product-shingle-page .product-pricing .product-table-wrap {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    box-shadow: 0 22px 46px rgba(10, 15, 24, 0.36);
}

.product-shingle-page .product-pricing .product-table {
    background: rgba(255, 255, 255, 0.96);
}

.product-shingle-page .product-pricing .product-table thead th {
    background: linear-gradient(180deg, #ff8f50, #e8611a);
}

.product-shingle-page .product-pricing .product-table tbody tr:nth-child(even) {
    background: #f9f4ef;
}

.product-shingle-page .product-pricing .text-accent {
    color: #b44710;
    font-size: 1.02rem;
}

.product-shingle-page .product-pricing__note {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(232, 97, 26, 0.25);
    box-shadow: 0 12px 30px rgba(10, 15, 24, 0.18);
}

.product-shingle-page .product-links {
    padding: 96px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.product-shingle-page .product-links__intro {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
    color: var(--color-gray-600);
    line-height: 1.75;
    background: #ffffff;
    border: 1px solid #e7eaf1;
    border-radius: var(--radius-md);
    padding: 14px 18px;
}

.product-shingle-page .product-links__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-shingle-page .product-links__card {
    display: block;
    position: relative;
    height: 100%;
    padding: 24px 22px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid #e7eaf1;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-shingle-page .product-links__card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 97, 26, 0.28);
    box-shadow: var(--shadow-lg);
}

.product-shingle-page .product-links__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, rgba(232, 97, 26, 0.16), rgba(255, 122, 51, 0.2));
    color: var(--color-orange);
    margin-bottom: 14px;
}

.product-shingle-page .product-links__title {
    color: var(--color-dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.product-shingle-page .product-links__desc {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-shingle-page .product-links__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--color-orange);
    border: 1px solid rgba(232, 97, 26, 0.3);
    background: rgba(232, 97, 26, 0.06);
}

@media (max-width: 992px) {
    .product-shingle-page .product-intro__grid,
    .product-shingle-page .product-features__meta,
    .product-shingle-page .product-links__grid,
    .product-shingle-page .metal-tile-models__grid,
    .product-shingle-page .shingle-visual-colors__grid {
        grid-template-columns: 1fr;
    }

    .product-shingle-page .product-intro__image-media {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .product-shingle-page .product-intro,
    .product-shingle-page .product-video-showcase,
    .product-shingle-page .product-features,
    .product-shingle-page .metal-tile-models,
    .product-shingle-page .shingle-visual-colors,
    .product-shingle-page .product-links {
        padding: 64px 0;
    }

    .product-shingle-page .product-intro__content,
    .product-shingle-page .product-features__block {
        padding: 22px;
    }

    .product-shingle-page .product-intro__stats {
        grid-template-columns: 1fr;
    }

    .product-shingle-page .metal-tile-models__table td:first-child {
        width: 42%;
    }
}

/* ============================================
   PRODUCT PAGE - TABLA CUTATA
   ============================================ */
.product-corrugated-page .product-intro {
    padding: 92px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(232, 97, 26, 0.14), transparent 36%),
        linear-gradient(180deg, #fffdfb 0%, #f8f9fd 100%);
}

.product-corrugated-page .product-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.product-corrugated-page .product-intro__content {
    background: #ffffff;
    border: 1px solid #e8eaf1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.product-corrugated-page .product-intro__lead {
    font-size: 1.06rem;
    line-height: 1.8;
    color: var(--color-gray-800);
    margin-bottom: 16px;
}

.product-corrugated-page .product-intro__highlights {
    margin: 0 0 16px;
}

.product-corrugated-page .product-intro__highlight {
    background: linear-gradient(180deg, #f7f8fb, #ffffff);
    border-color: #e7eaf0;
}

.product-corrugated-page .product-intro__stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-corrugated-page .product-intro__stat {
    background: #f9fafc;
    border: 1px solid #e8ebf2;
    border-radius: var(--radius-md);
    text-align: center;
    padding: 12px 10px;
}

.product-corrugated-page .product-intro__stat strong {
    display: block;
    color: var(--color-dark);
    margin-bottom: 4px;
    font-size: 1rem;
}

.product-corrugated-page .product-intro__stat span {
    font-size: 0.82rem;
    color: var(--color-gray-600);
    line-height: 1.35;
}

.product-corrugated-page .product-intro__image-placeholder {
    min-height: 420px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(232, 97, 26, 0.2);
    background:
        linear-gradient(160deg, rgba(21, 30, 48, 0.94), rgba(42, 24, 14, 0.9)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 14px, rgba(255, 255, 255, 0) 14px, rgba(255, 255, 255, 0) 28px);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.product-corrugated-page .product-intro__image-media {
    min-height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #d7dde7;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-corrugated-page .product-intro__image-media img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: contain;
    display: block;
}

.product-corrugated-page .corrugated-types {
    padding: 92px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.product-corrugated-page .corrugated-types__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.product-corrugated-page .corrugated-types__card {
    background: #ffffff;
    border: 1px solid #d7dde7;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-corrugated-page .corrugated-types__media {
    aspect-ratio: 16 / 9;
    background: #e2e8f0;
}

.product-corrugated-page .corrugated-types__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-corrugated-page .corrugated-types__body {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.product-corrugated-page .corrugated-types__title {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin: 0;
}

.product-corrugated-page .corrugated-types__desc {
    color: var(--color-gray-600);
    line-height: 1.72;
    margin: 0;
}

.product-corrugated-page .corrugated-types__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4px;
}

.product-corrugated-page .corrugated-types__table td {
    padding: 7px 0;
    border-bottom: 1px solid #e9edf4;
    font-size: 0.9rem;
}

.product-corrugated-page .corrugated-types__table td:first-child {
    color: var(--color-gray-600);
    font-weight: 600;
    width: 52%;
}

.product-corrugated-page .corrugated-types__table td:last-child {
    color: var(--color-dark);
    font-weight: 700;
    text-align: right;
}

.product-metal-tile-page .metal-tile-models {
    padding: 26px 0 72px;
    background: #ffffff;
}

.product-metal-tile-page .product-intro {
    padding: 74px 0 20px;
    background: #ffffff;
}

.product-metal-tile-page .product-intro__content--full {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dfe8f2;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.product-metal-tile-page .metal-tile-intro__points {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.product-metal-tile-page .metal-tile-intro__points span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #dbe6f2;
    background: #ffffff;
    color: #30455b;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-metal-tile-page .metal-tile-intro__points i {
    color: var(--color-orange);
}

.product-metal-tile-page .product-video-showcase {
    padding: 18px 0 62px;
    background: #ffffff;
}

.product-metal-tile-page .product-video-showcase .section-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.product-metal-tile-page .product-video-showcase__frame {
    position: relative;
    max-width: 390px;
    margin: 0 auto;
    padding: 38px 14px 26px;
    border-radius: 46px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, #05070d 0%, #171d29 46%, #06080d 100%);
    box-shadow:
        0 28px 76px rgba(17, 24, 39, 0.24),
        0 10px 28px rgba(0, 0, 0, 0.18),
        inset 0 0 0 2px rgba(255, 255, 255, 0.06),
        inset 0 0 0 8px rgba(0, 0, 0, 0.34);
}

.product-metal-tile-page .product-video-showcase__media {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    object-position: center center;
    border-radius: 28px;
    background: #0f1420;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.product-shingle-page .product-video-showcase__frame::before,
.product-metal-tile-page .product-video-showcase__frame::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    z-index: 2;
    width: 112px;
    height: 26px;
    border-radius: 999px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 82% 50%, #253247 0 4px, transparent 5px),
        linear-gradient(180deg, #05070c 0%, #111826 100%);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        0 8px 18px rgba(0, 0, 0, 0.34);
}

.product-shingle-page .product-video-showcase__frame::after,
.product-metal-tile-page .product-video-showcase__frame::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 11px;
    z-index: 2;
    width: 110px;
    height: 4px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.28);
}

.product-metal-tile-page .metal-tile-models__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.product-metal-tile-page .metal-tile-models__card {
    background: #ffffff;
    border: 1px solid #e3e9f2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-metal-tile-page .metal-tile-models__card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 97, 26, 0.3);
    box-shadow: var(--shadow-lg);
}

.product-metal-tile-page .metal-tile-models__media {
    position: relative;
    background: linear-gradient(180deg, #f3f8fc 0%, #e8f0f7 100%);
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-metal-tile-page .metal-tile-models__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
    transition: transform var(--transition);
}

.product-metal-tile-page .metal-tile-models__media img[src*="tigla_metalica_laguna"],
.product-metal-tile-page .metal-tile-models__media img[src*="tigla_metalica_regalis"] {
    object-position: center 38%;
}

.product-metal-tile-page .metal-tile-models__card:hover .metal-tile-models__media img {
    transform: scale(1.035);
}

.product-metal-tile-page .metal-tile-models__body {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.product-metal-tile-page .metal-tile-models__title {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-metal-tile-page .metal-tile-models__title::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    flex-shrink: 0;
}

.product-metal-tile-page .metal-tile-models__desc {
    color: var(--color-gray-600);
    line-height: 1.72;
    margin: 0;
}

.product-metal-tile-page .metal-tile-models__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4px;
    border-top: 1px solid #e9edf4;
}

.product-metal-tile-page .metal-tile-models__table td {
    padding: 7px 0;
    border-bottom: 1px solid #e9edf4;
    font-size: 0.9rem;
}

.product-metal-tile-page .metal-tile-models__table td:first-child {
    color: var(--color-gray-600);
    font-weight: 600;
    width: 52%;
}

.product-metal-tile-page .metal-tile-models__table td:last-child {
    color: var(--color-dark);
    font-weight: 700;
    text-align: right;
}

.product-corrugated-page .product-features {
    padding: 92px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.product-corrugated-page .product-features__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.product-corrugated-page .product-features__meta-card {
    border: 1px solid #e7eaf1;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 16px;
    display: grid;
    gap: 5px;
}

.product-corrugated-page .product-features__meta-card i {
    color: var(--color-orange);
}

.product-corrugated-page .product-features__meta-card strong {
    color: var(--color-dark);
    font-size: 1rem;
}

.product-corrugated-page .product-features__meta-card span {
    color: var(--color-gray-600);
    font-size: 0.86rem;
}

.product-corrugated-page .product-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.product-corrugated-page .product-table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0;
}

.product-corrugated-page .product-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #ffffff;
    background: linear-gradient(180deg, #22304a, #172033);
}

.product-corrugated-page .product-table thead th:first-child { border-top-left-radius: 14px; }
.product-corrugated-page .product-table thead th:last-child { border-top-right-radius: 14px; }

.product-corrugated-page .product-table tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid #edf0f5;
    color: var(--color-gray-700);
}

.product-corrugated-page .product-table tbody tr:nth-child(even) {
    background: #fbfcff;
}

.product-corrugated-page .product-table tbody tr:hover {
    background: #f3f7ff;
}

.product-corrugated-page .product-table tbody td:first-child {
    font-weight: 700;
    color: var(--color-dark);
}

.product-corrugated-page .product-colors-section {
    padding: 92px 0;
    background:
        radial-gradient(circle at 86% 12%, rgba(232, 97, 26, 0.12), transparent 30%),
        linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}

.product-corrugated-page .product-colors-section__intro {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.product-corrugated-page .product-colors-section__intro span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #e6e8ef;
    border-radius: 999px;
    padding: 8px 14px;
}

.product-corrugated-page .product-colors-section__intro i {
    color: var(--color-orange);
}

.product-corrugated-page .product-colors--panel {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 18px;
}

.product-corrugated-page .product-colors__swatch {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #edf0f5;
    background: #fafbff;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.product-corrugated-page .product-colors__circle {
    width: 34px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid rgba(17, 24, 39, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 1px 2px rgba(15, 23, 42, 0.12);
}

.product-corrugated-page .product-colors__name {
    color: var(--color-gray-800);
    font-weight: 600;
    font-size: 0.92rem;
}

.product-corrugated-page .product-pricing {
    padding: 96px 0;
    background:
        radial-gradient(circle at 15% 12%, rgba(232, 97, 26, 0.18), transparent 26%),
        linear-gradient(160deg, #111827 0%, #1b2235 58%, #2a1a11 100%);
}

.product-corrugated-page .product-pricing__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-corrugated-page .product-pricing__chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
}

.product-corrugated-page .product-pricing__chips i {
    color: var(--color-orange-light);
}

.product-corrugated-page .product-pricing .product-table-wrap {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    box-shadow: 0 22px 46px rgba(10, 15, 24, 0.36);
}

.product-corrugated-page .product-pricing .product-table {
    background: rgba(255, 255, 255, 0.96);
}

.product-corrugated-page .product-pricing .product-table thead th {
    background: linear-gradient(180deg, #ff8f50, #e8611a);
}

.product-corrugated-page .product-pricing .product-table tbody tr:nth-child(even) {
    background: #f9f4ef;
}

.product-corrugated-page .product-pricing .text-accent {
    color: #b44710;
    font-size: 1.02rem;
}

.product-corrugated-page .product-pricing__note {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(232, 97, 26, 0.25);
    box-shadow: 0 12px 30px rgba(10, 15, 24, 0.18);
}

.product-corrugated-page .product-links {
    padding: 96px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.product-corrugated-page .product-links__intro {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
    color: var(--color-gray-600);
    line-height: 1.75;
    background: #ffffff;
    border: 1px solid #e7eaf1;
    border-radius: var(--radius-md);
    padding: 14px 18px;
}

.product-corrugated-page .product-links__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-corrugated-page .product-links__card {
    display: block;
    position: relative;
    height: 100%;
    padding: 24px 22px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid #e7eaf1;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-corrugated-page .product-links__card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 97, 26, 0.28);
    box-shadow: var(--shadow-lg);
}

.product-corrugated-page .product-links__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, rgba(232, 97, 26, 0.16), rgba(255, 122, 51, 0.2));
    color: var(--color-orange);
    margin-bottom: 14px;
}

.product-corrugated-page .product-links__title {
    color: var(--color-dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.product-corrugated-page .product-links__desc {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-corrugated-page .product-links__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--color-orange);
    border: 1px solid rgba(232, 97, 26, 0.3);
    background: rgba(232, 97, 26, 0.06);
}

.product-links--rolling .product-links__viewport {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
}

body .product-links.product-links--rolling {
    padding: 96px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

body .product-links__grid.product-links__grid--rolling {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: productLinksRolling 38s linear infinite;
    will-change: transform;
}

.product-links--rolling .product-links__viewport:hover .product-links__grid--rolling {
    animation-play-state: paused;
}

body .product-links__grid.product-links__grid--rolling .product-links__card {
    width: min(340px, 80vw);
    flex: 0 0 min(340px, 80vw);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 390px;
    overflow: hidden;
    padding: 0;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid #e7eaf1;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-modular-page .product-links__grid.product-links__grid--rolling,
.product-shingle-page .product-links__grid.product-links__grid--rolling,
.product-corrugated-page .product-links__grid.product-links__grid--rolling {
    align-items: stretch;
}

.product-modular-page .product-links__grid.product-links__grid--rolling .product-links__card,
.product-shingle-page .product-links__grid.product-links__grid--rolling .product-links__card,
.product-corrugated-page .product-links__grid.product-links__grid--rolling .product-links__card {
    width: min(368px, 84vw);
    flex: 0 0 min(368px, 84vw);
    height: 420px;
}

.product-modular-page .product-links__grid.product-links__grid--rolling .product-links__media,
.product-shingle-page .product-links__grid.product-links__grid--rolling .product-links__media,
.product-corrugated-page .product-links__grid.product-links__grid--rolling .product-links__media {
    height: 182px;
}

body .product-links__grid.product-links__grid--rolling .product-links__media {
    height: 160px;
    background: #eef2f7;
    border-bottom: 1px solid #e6e9f0;
}

body .product-links__grid.product-links__grid--rolling .product-links__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body .product-links__grid.product-links__grid--rolling .product-links__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 20px;
}

body .product-links__grid.product-links__grid--rolling .product-links__title {
    color: var(--color-dark);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

body .product-links__grid.product-links__grid--rolling .product-links__desc {
    color: var(--color-gray-600);
    margin-bottom: 14px;
    line-height: 1.7;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body .product-links__grid.product-links__grid--rolling .product-links__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    border-radius: 999px;
    color: var(--color-orange);
    border: 1px solid rgba(232, 97, 26, 0.3);
    background: rgba(232, 97, 26, 0.06);
    margin-top: auto;
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body .product-links__grid.product-links__grid--rolling .product-links__card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 97, 26, 0.28);
    box-shadow: var(--shadow-lg);
}

body .product-links.product-links--rolling .section-header {
    margin-bottom: 20px;
}

body .product-links.product-links--rolling .product-links__intro {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
    color: var(--color-gray-600);
    line-height: 1.75;
    background: #ffffff;
    border: 1px solid #e7eaf1;
    border-radius: var(--radius-md);
    padding: 14px 18px;
}

body .product-links.product-links--rolling .product-links__intro p {
    margin: 0;
}

body .product-links__grid.product-links__grid--rolling .product-links__card--clone {
    pointer-events: auto;
}

@keyframes productLinksRolling {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.product-corrugated-page .corrugated-lead {
    padding: 48px 0 82px;
    background: #f8fafc;
}

.product-corrugated-page .corrugated-lead--top {
    padding: 36px 0 56px;
}

.product-corrugated-page .corrugated-lead__wrap {
    background: #ffffff;
    border: 1px solid #d7dde7;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 22px;
}

.product-corrugated-page .corrugated-lead__intro .section-header__tag {
    margin-bottom: 10px;
}

.product-corrugated-page .corrugated-lead__intro .section-header__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-corrugated-page .corrugated-lead__offer {
    margin-top: 10px;
    font-weight: 700;
    color: #0f172a;
}

.product-corrugated-page .corrugated-lead__form {
    display: grid;
    gap: 12px;
    align-content: start;
}

.product-corrugated-page .corrugated-lead__field {
    display: grid;
    gap: 6px;
}

.product-corrugated-page .corrugated-lead__field label {
    font-size: 0.86rem;
    color: #334155;
    font-weight: 700;
}

.product-corrugated-page .corrugated-lead__field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: #1e293b;
    font: inherit;
    outline: none;
    transition: border-color var(--transition), background-color var(--transition);
}

.product-corrugated-page .corrugated-lead__field input:focus {
    border-color: #64748b;
    background: #ffffff;
}

.product-corrugated-page .corrugated-lead__submit {
    margin-top: 4px;
    justify-content: center;
}

.product-corrugated-page .corrugated-lead__submit.is-loading {
    opacity: 0.85;
    pointer-events: none;
}

.product-corrugated-page .corrugated-lead__status {
    min-height: 22px;
    font-size: 0.9rem;
    margin: 0;
}

.product-corrugated-page .corrugated-lead__status.is-success {
    color: #15803d;
}

.product-corrugated-page .corrugated-lead__status.is-error {
    color: #b91c1c;
}

@media (max-width: 992px) {
    .product-corrugated-page .product-intro__grid,
    .product-corrugated-page .product-features__meta,
    .product-corrugated-page .product-links__grid {
        grid-template-columns: 1fr;
    }

    .product-corrugated-page .corrugated-types__grid {
        grid-template-columns: 1fr;
    }

    .product-corrugated-page .corrugated-lead__wrap {
        grid-template-columns: 1fr;
    }

    .product-corrugated-page .product-intro__image-placeholder {
        min-height: 260px;
    }

    .product-corrugated-page .product-intro__image-media {
        min-height: 260px;
        padding: 12px;
    }

    .product-corrugated-page .product-intro__image-media img {
        max-height: 230px;
    }

    .product-metal-tile-page .metal-tile-models__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-corrugated-page .product-intro,
    .product-corrugated-page .product-features,
    .product-corrugated-page .product-colors-section,
    .product-corrugated-page .product-pricing,
    .product-corrugated-page .product-links {
        padding: 64px 0;
    }

    .product-metal-tile-page .metal-tile-models {
        padding: 8px 0 64px;
    }

    .product-metal-tile-page .product-intro {
        padding: 56px 0 14px;
    }

    .product-metal-tile-page .product-video-showcase {
        padding: 12px 0 54px;
    }

    .product-metal-tile-page .product-intro__content--full {
        padding: 20px;
    }

    .product-metal-tile-page .metal-tile-intro__points {
        grid-template-columns: 1fr;
    }

    .product-corrugated-page .corrugated-lead {
        padding: 26px 0 64px;
    }

    .product-corrugated-page .corrugated-lead--top {
        padding-top: 22px;
    }

    .product-corrugated-page .product-intro__content {
        padding: 22px;
    }

    .product-corrugated-page .product-intro__stats {
        grid-template-columns: 1fr;
    }

    .product-corrugated-page .product-table {
        min-width: 560px;
    }

    body .product-links__grid.product-links__grid--rolling {
        animation-duration: 24s;
    }

    body .product-links__grid.product-links__grid--rolling .product-links__card {
        min-height: 360px;
    }

    .product-modular-page .product-links__grid.product-links__grid--rolling .product-links__card,
    .product-shingle-page .product-links__grid.product-links__grid--rolling .product-links__card,
    .product-corrugated-page .product-links__grid.product-links__grid--rolling .product-links__card {
        width: min(348px, 86vw);
        flex: 0 0 min(348px, 86vw);
        height: 388px;
    }

    .product-modular-page .product-links__grid.product-links__grid--rolling .product-links__media,
    .product-shingle-page .product-links__grid.product-links__grid--rolling .product-links__media,
    .product-corrugated-page .product-links__grid.product-links__grid--rolling .product-links__media {
        height: 158px;
    }

    body .product-links__grid.product-links__grid--rolling .product-links__media {
        height: 140px;
    }

    .product-corrugated-page .product-pricing__chips span {
        width: 100%;
        justify-content: center;
    }
}

/* Corrugated page secondary style override */
.product-corrugated-page .page-header {
    background:
        linear-gradient(135deg, rgba(31, 41, 55, 0.86) 0%, rgba(55, 65, 81, 0.82) 70%, rgba(75, 85, 99, 0.78) 100%),
        var(--page-header-image, none) center/cover no-repeat;
    background-color: #1f2937;
    background-blend-mode: multiply, normal;
}

.product-corrugated-page .product-intro,
.product-corrugated-page .product-features,
.product-corrugated-page .product-colors-section,
.product-corrugated-page .product-pricing,
.product-corrugated-page .product-links:not(.product-links--rolling) {
    background: #f8fafc;
}

.product-corrugated-page .product-pricing {
    background: #eef2f7;
}

.product-corrugated-page .product-intro__content,
.product-corrugated-page .product-features__meta-card,
.product-corrugated-page .product-colors--panel,
.product-corrugated-page .product-links__card,
.product-corrugated-page .product-features__block {
    box-shadow: none;
    border-color: #d7dde7;
}

.product-corrugated-page .product-intro__image-placeholder {
    background: linear-gradient(160deg, #334155, #475569);
    border-color: #64748b;
    box-shadow: none;
}

.product-corrugated-page .product-intro__highlight,
.product-corrugated-page .product-intro__stat,
.product-corrugated-page .product-colors__swatch {
    background: #ffffff;
    border-color: #dde3ec;
}

.product-corrugated-page .product-table thead th,
.product-corrugated-page .product-pricing .product-table thead th {
    background: #334155;
    color: #f8fafc;
}

.product-corrugated-page .product-pricing .product-table-wrap {
    border-color: #cbd5e1;
    box-shadow: none;
}

.product-corrugated-page .product-pricing__chips span {
    background: #ffffff;
    color: #334155;
    border-color: #cfd8e3;
}

.product-corrugated-page .product-pricing__chips i {
    color: #e8611a;
}

.product-corrugated-page .product-pricing__note,
.product-corrugated-page .product-links__intro {
    background: #ffffff;
    border-color: #d6dde7;
    box-shadow: none;
}

.product-corrugated-page .product-links__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    border-color: #c9d3e0;
}

.product-corrugated-page .product-links__icon {
    background: #e2e8f0;
    color: #475569;
}

.product-corrugated-page .product-links__arrow {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

/* ============================================
   FAQ PAGE IMPROVEMENTS
   ============================================ */
.faq-page .faq-section {
    padding: 84px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.faq-page .faq-tools {
    margin: 0 auto 26px;
    padding: 18px;
    border: 1px solid #e7eaf1;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(26, 26, 46, 0.06);
}

.faq-page .faq-tools__label {
    display: block;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.faq-page .faq-tools__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.faq-page .faq-tools__search {
    width: 100%;
    border: 1px solid #d9deea;
    border-radius: 10px;
    padding: 11px 14px;
    font: inherit;
    color: var(--color-dark);
    background: #ffffff;
}

.faq-page .faq-tools__search:focus {
    outline: none;
    border-color: rgba(232, 97, 26, 0.45);
    box-shadow: 0 0 0 3px rgba(232, 97, 26, 0.12);
}

.faq-page .faq-tools__clear {
    border: 1px solid rgba(232, 97, 26, 0.32);
    background: rgba(232, 97, 26, 0.06);
    color: var(--color-orange);
    font-weight: 700;
    border-radius: 10px;
    padding: 0 14px;
    cursor: pointer;
}

.faq-page .faq-tools__status {
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

.faq-page .faq-tools__links {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-page .faq-tools__links a {
    color: #1f2937;
    background: #f8fafc;
    border: 1px solid #dbe3ef;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
}

.faq-page .faq-list {
    display: grid;
    gap: 12px;
}

.faq-page .faq-item {
    border: 1px solid #e3e8f1;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.faq-page .faq-item[open] {
    border-color: rgba(232, 97, 26, 0.3);
}

.faq-page .faq-item__question {
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-dark);
}

.faq-page .faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-page .faq-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 26, 0.1);
    color: var(--color-orange);
}

.faq-page .faq-item__toggle {
    color: #5b6576;
    transition: transform 0.2s ease;
}

.faq-page .faq-item[open] .faq-item__toggle {
    transform: rotate(180deg);
}

.faq-page .faq-item__answer {
    padding: 2px 18px 18px;
    color: var(--color-gray-700);
}

.faq-page .faq-item__answer p,
.faq-page .faq-item__answer li {
    line-height: 1.72;
}

.faq-page .faq-item__answer ul {
    margin: 8px 0 10px;
    padding-left: 20px;
}

.faq-page .faq-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 12px;
    border: 1px solid #dde4ef;
    border-radius: 10px;
    overflow: hidden;
}

.faq-page .faq-table th,
.faq-page .faq-table td {
    border-bottom: 1px solid #e5ebf4;
    padding: 9px 10px;
    text-align: left;
}

.faq-page .faq-table thead th {
    background: #1f2937;
    color: #ffffff;
}

@media (max-width: 768px) {
    .faq-page .faq-section {
        padding: 66px 0;
    }

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

    .faq-page .faq-tools__clear {
        min-height: 42px;
    }

    .faq-page .faq-item__question {
        grid-template-columns: 1fr auto;
    }

    .faq-page .faq-item__icon {
        display: none;
    }

    .faq-page .faq-table {
        display: block;
        overflow-x: auto;
    }
}

/* ============================================
   PRODUCT ADVANTAGES - TIGLA METALICA
   ============================================ */
.product-advantages {
    position: relative;
    padding: 96px 0;
    background: #ffffff;
}

.product-advantages .section-header__tag,
.product-pricing .section-header__tag {
    background-color: rgba(232, 97, 26, 0.16);
}

.product-advantages .section-header__title {
    color: var(--color-dark);
}

.product-advantages .section-header__desc {
    color: var(--color-gray-600);
}

.product-pricing .section-header__title {
    color: var(--color-white);
}

.product-pricing .section-header__desc {
    color: var(--color-gray-400);
}

.product-advantages .container {
    position: relative;
    z-index: 1;
}

.product-advantages .section-header {
    margin-bottom: 48px;
}

.product-advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-advantages__card {
    position: relative;
    height: 100%;
    padding: 30px 28px 28px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(232, 97, 26, 0.12);
    box-shadow: 0 12px 30px rgba(26, 26, 46, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
}

.product-advantages__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
}

.product-advantages__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(26, 26, 46, 0.12);
    border-color: rgba(232, 97, 26, 0.24);
}

.product-advantages__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    box-shadow: 0 14px 24px rgba(232, 97, 26, 0.22);
}

.product-advantages__icon i {
    font-size: 1.45rem;
    color: var(--color-white);
}

.product-advantages__title {
    margin-bottom: 12px;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-dark);
}

.product-advantages__desc {
    font-size: 0.96rem;
    line-height: 1.8;
    color: var(--color-gray-600);
}

.product-package {
    display: grid;
    gap: 28px;
    margin-bottom: 36px;
}

.product-pricing {
    position: relative;
    padding: 104px 0;
    background:
        radial-gradient(circle at top left, rgba(232, 97, 26, 0.16), transparent 24%),
        linear-gradient(160deg, #171728 0%, var(--color-dark) 58%, #25150d 100%);
}

.product-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, transparent 100%);
    pointer-events: none;
}

.product-pricing .container {
    position: relative;
    z-index: 1;
}

.product-pricing .section-header {
    margin-bottom: 52px;
}

.product-package__intro {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #121220 0%, #1a1a2e 55%, #24140c 100%);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(232, 97, 26, 0.18);
}

.product-package__intro-main h3 {
    margin: 10px 0 10px;
    font-size: 1.8rem;
    color: var(--color-white);
}

.product-package__intro-main p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
}

.product-package__eyebrow {
    display: inline-block;
    color: var(--color-orange-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-package__intro-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
}

.product-package__intro-badges span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-package__intro-badges i {
    color: var(--color-orange);
}

.product-package__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.product-package__tier {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    box-shadow: 0 18px 38px rgba(26, 26, 46, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-package__tier:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(26, 26, 46, 0.14);
    border-color: rgba(232, 97, 26, 0.2);
}

.product-package__tier--featured {
    background: linear-gradient(160deg, #121220 0%, #1a1a2e 55%, #24140c 100%);
    border-color: rgba(232, 97, 26, 0.28);
    box-shadow: 0 30px 60px rgba(26, 26, 46, 0.18);
}

.product-package__featured-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-package__tier-top {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-gray-200);
    min-height: 220px;
}

.product-package__tier--featured .product-package__tier-top {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.product-package__label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(232, 97, 26, 0.1);
    color: var(--color-orange);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-package__label--accent {
    background: rgba(255, 255, 255, 0.16);
    color: #FFE6D6;
}

.product-package__title {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--color-white);
    letter-spacing: -0.03em;
}

.product-package__title--dark {
    color: var(--color-dark);
}

.product-package__subtitle {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    font-size: 0.97rem;
}

.product-package__subtitle--dark {
    color: var(--color-gray-600);
}

.product-package__price-box {
    margin-top: 28px;
    padding: 22px 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-package__price-box--light {
    background: var(--color-gray-100);
    border-color: var(--color-gray-200);
}

.product-package__price-prefix {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.82);
}

.product-package__price-box--light .product-package__price-prefix {
    color: var(--color-gray-400);
}

.product-package__price {
    margin: 10px 0 6px;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
    letter-spacing: -0.04em;
}

.product-package__price--dark {
    color: var(--color-dark);
}

.product-package__price small {
    font-size: 1.2rem;
    font-weight: 700;
}

.btn--dark {
    border-color: rgba(255, 255, 255, 0.36);
    color: var(--color-white);
}

.btn--dark:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--color-white);
    color: var(--color-white);
}

.product-package__info-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.product-package__info-card h4,
.product-pricing__table-intro h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
}

.product-package__list {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.product-package__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-gray-700);
    line-height: 1.7;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.product-package__list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.product-package__list i {
    margin-top: 5px;
    color: var(--color-orange);
}

.product-package__tier--featured .product-package__list li {
    color: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.product-package__tier--featured .product-package__list i {
    color: #FFD7BF;
}

.product-package__footer {
    margin-top: auto;
}

.product-package__footer .btn {
    width: 100%;
    justify-content: center;
}

.product-package__comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-package__info-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
}

.product-package__info-card p,
.product-package__info-card li,
.product-pricing__table-intro p {
    color: var(--color-gray-600);
    line-height: 1.7;
}


.product-pricing__note {
    margin-top: 24px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(232, 97, 26, 0.14);
    box-shadow: var(--shadow-sm);
    color: var(--color-gray-600);
}

.product-pricing__note i {
    color: var(--color-orange);
    margin-right: 8px;
}
.product-package__info-card ul {
    display: grid;
    .product-advantages__grid {
        grid-template-columns: 1fr;
    }

    gap: 10px;
    margin-top: 14px;
    list-style: disc;
    padding-left: 18px;
}

.product-pricing__table-intro {
    margin: 28px 0 18px;
}

.product-pricing__table-intro p {
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .product-advantages__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-package__intro {
        flex-direction: column;
    }

    .product-package__intro-badges {
        min-width: 0;
    }

    .product-package__grid,
    .product-package__comparison {
        grid-template-columns: 1fr;
    }

    .product-package__tier--featured {
        order: -1;
    }

}

@media (max-width: 768px) {
    .product-advantages .section-header {
        margin-bottom: 28px;
    }

    .product-advantages__card {
        height: auto;
        padding: 22px 20px 20px;
        border-radius: 20px;
    }

    .product-advantages__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
        border-radius: 16px;
    }

    .product-advantages__icon i {
        font-size: 1.15rem;
    }

    .product-advantages__title {
        margin-bottom: 10px;
        font-size: 1.04rem;
    }

    .product-advantages__desc {
        font-size: 0.92rem;
        line-height: 1.65;
    }
}

@media (max-width: 768px) {
    .product-advantages,
    .product-pricing {
        padding: 72px 0;
    }

    .product-hero-highlights {
        gap: 10px;
    }

    .product-hero-highlights__item {
        width: 100%;
        justify-content: flex-start;
    }

    .product-package__intro,
    .product-package__tier,
    .product-package__info-card {
        padding: 24px;
    }

    .product-package__tier-top {
        min-height: 0;
    }

    .product-package__intro-main h3 {
        font-size: 1.5rem;
    }

    .product-package__title {
        font-size: 2rem;
    }

    .product-package__price {
        font-size: 2.4rem;
    }

    .product-package__featured-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 16px;
    }

}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.portfolio-section {
    padding: 100px 0;
    background: var(--color-gray-100);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.portfolio-filters__btn {
    padding: 10px 24px;
    border: 2px solid var(--color-gray-200);
    border-radius: 50px;
    background: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all var(--transition);
}

.portfolio-filters__btn:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.portfolio-filters__btn--active {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    position: static;
}

.portfolio-grid > .portfolio-card {
    position: relative;
    width: 100%;
    min-width: 0;
    float: none;
}

.portfolio-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--color-gray-200);
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.portfolio-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.portfolio-card__placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
}

.portfolio-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-card__content {
    padding: 24px;
}

.portfolio-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.portfolio-card__desc {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 14px;
}

.portfolio-card__meta {
    margin-bottom: 16px;
}

.portfolio-card__location {
    font-size: 0.82rem;
    color: var(--color-gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.portfolio-card__location i {
    color: var(--color-orange);
    font-size: 0.78rem;
}

.portfolio-card__link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.portfolio-card__link:hover {
    gap: 12px;
}

/* Portfolio Stats */
.portfolio-stats {
    padding: 80px 0;
    background: var(--color-dark);
}

.portfolio-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.portfolio-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.portfolio-stats__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.portfolio-stats__icon i {
    font-size: 1.4rem;
    color: var(--color-white);
}

.portfolio-stats__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.portfolio-stats__label {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }

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

    .portfolio-stats__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   DESPRE NOI (ABOUT PAGE)
   ============================================ */
.about-story {
    padding: 100px 0;
    background: var(--color-white);
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story__text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-story__highlights {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-story__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gray-100);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gray-200);
}

.about-story__highlight i {
    color: var(--color-orange);
    font-size: 1.1rem;
}

.about-story__highlight span {
    font-size: 0.88rem;
    color: var(--color-gray-600);
}

.about-story__image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-light));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--color-gray-400);
    overflow: hidden;
}

.about-story__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-story__picture {
    display: block;
    width: 100%;
    height: 100%;
}

.about-story__image-placeholder i {
    font-size: 4rem;
    color: var(--color-orange);
}

.about-story__image-placeholder span {
    font-size: 0.9rem;
}

/* About Stats */
.about-stats {
    padding: 80px 0;
    background:
        radial-gradient(120% 160% at 8% 0%, rgba(232, 97, 26, 0.08) 0%, transparent 42%),
        radial-gradient(100% 140% at 92% 100%, rgba(232, 97, 26, 0.06) 0%, transparent 48%),
        linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-stats::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0%, transparent 34%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 84px);
    pointer-events: none;
    opacity: 0.36;
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-stats__item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background:
        radial-gradient(120% 140% at 20% 8%, rgba(232, 97, 26, 0.1) 0%, transparent 46%),
        linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
    border: 1px solid #e4e9f2;
    border-radius: 18px;
    padding: 28px 18px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-stats__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent 42%);
    pointer-events: none;
}

.about-stats__item::after {
    content: '';
    position: absolute;
    top: -48%;
    right: -34%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 97, 26, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-stats__item:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 97, 26, 0.28);
    box-shadow: var(--shadow-md);
}

.about-stats__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.96), rgba(255, 243, 232, 0.9));
    border: 1px solid rgba(232, 97, 26, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(26, 26, 46, 0.1);
}

.about-stats__icon i {
    font-size: 1.32rem;
    color: #b3470f;
}

.about-stats__number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
}

.about-stats__suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
}

.about-stats__label {
    font-size: 0.9rem;
    color: var(--color-gray-700);
    font-weight: 600;
    margin-top: 10px;
    background: rgba(232, 97, 26, 0.08);
    border: 1px solid rgba(232, 97, 26, 0.2);
    border-radius: 999px;
    padding: 7px 14px;
    letter-spacing: 0.01em;
}

/* About Values */
.about-values {
    padding: 100px 0;
    background: var(--color-gray-100);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.about-values__card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.about-values__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 97, 26, 0.15);
}

.about-values__card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.14), rgba(255, 122, 51, 0.22));
    border: 1px solid rgba(232, 97, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-values__card-icon i {
    font-size: 1.4rem;
    color: var(--color-orange-dark);
}

.about-values__card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.about-values__card-desc {
    font-size: 0.88rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* About Team */
.about-team {
    padding: 100px 0;
    background: var(--color-white);
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.about-team__card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--color-gray-200);
}

.about-team__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.about-team__photo {
    width: 100%;
    aspect-ratio: 1.18;
    overflow: hidden;
}

.about-team__photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-team__photo-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.72);
}

.about-team__info {
    padding: 24px;
    text-align: center;
}

.about-team__count {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--color-orange-dark);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-team__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.about-team__role {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-orange);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-team__bio {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

.about-team__note {
    max-width: 880px;
    margin: 30px auto 0;
    padding: 18px 22px;
    border: 1px solid rgba(232, 97, 26, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--color-gray-700);
    font-size: 0.95rem;
    line-height: 1.75;
    text-align: center;
}

.about-team__directory {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.about-team__group {
    position: relative;
    grid-column: span 4;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 247, 0.94));
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.07);
}

.about-team__group--wide {
    grid-column: 1 / -1;
}

.about-team__group::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(232, 97, 26, 0.1), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(232, 97, 26, 0.04));
}

.about-team__group-head,
.about-team__contact-list {
    position: relative;
    z-index: 1;
}

.about-team__group-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.about-team__group-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background:
        radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.22), transparent 32%),
        linear-gradient(145deg, var(--color-dark), var(--color-dark-light));
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.14);
}

.about-team__group-title {
    margin: 0 0 6px;
    color: var(--color-dark);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
}

.about-team__group-desc {
    margin: 0;
    color: var(--color-gray-600);
    font-size: 0.92rem;
    line-height: 1.6;
}

.about-team__contact-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-team__contact-list--columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-team__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(17, 24, 39, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--color-dark);
}

.about-team__contact span {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
}

.about-team__contact a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--color-orange-dark);
    background: rgba(232, 97, 26, 0.08);
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

.about-team__contact a:hover {
    color: var(--color-white);
    background: var(--color-orange);
}

.about-team__contact--name-only {
    justify-content: flex-start;
}

.about-team__social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.about-team__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.about-team__social a:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

/* Certifications */
.about-certifications {
    padding: 100px 0;
    background: var(--color-gray-100);
}

.about-certifications__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.about-certifications__card {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition);
}

.about-certifications__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-certifications__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(232, 97, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.about-certifications__icon i {
    font-size: 1.3rem;
    color: var(--color-orange);
}

.about-certifications__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.about-certifications__desc {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.about-certifications__partners {
    text-align: center;
}

.about-certifications__partners-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 32px;
}

.about-certifications__partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about-certifications__partner-placeholder {
    width: 140px;
    height: 70px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.about-certifications__partner-placeholder span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gray-400);
}

.about-certifications__partner-placeholder:hover {
    border-color: var(--color-orange);
    box-shadow: var(--shadow-sm);
}

.about-certifications__partner-placeholder:hover span {
    color: var(--color-orange);
}

@media (max-width: 1024px) {
    .about-story__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team__group {
        grid-column: span 6;
    }

    .about-team__group--wide {
        grid-column: 1 / -1;
    }

    .about-certifications__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-story {
        padding: 60px 0;
    }

    .about-story__image-placeholder {
        height: 280px;
    }

    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-values {
        padding: 60px 0;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-team {
        padding: 60px 0;
    }

    .about-team__grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .about-team__directory {
        gap: 16px;
    }

    .about-team__group,
    .about-team__group--wide {
        grid-column: 1 / -1;
        padding: 22px;
        border-radius: 22px;
    }

    .about-team__group-head {
        gap: 12px;
        margin-bottom: 16px;
    }

    .about-team__group-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .about-team__contact-list--columns {
        grid-template-columns: 1fr;
    }

    .about-certifications {
        padding: 60px 0;
    }

    .about-certifications__grid {
        grid-template-columns: 1fr;
    }

    .about-story__highlights {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-team__group {
        padding: 20px;
    }

    .about-team__group-head {
        flex-direction: column;
    }

    .about-team__contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .about-team__contact a {
        width: 100%;
    }
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-section {
    padding: 100px 0;
    background: var(--color-gray-100);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--color-gray-200);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.blog-card__placeholder i {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.blog-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.blog-card__category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(232, 97, 26, 0.1);
    color: var(--color-orange);
}

.blog-card__category--preturi { background: rgba(39, 174, 96, 0.1); color: #27ae60; }
.blog-card__category--comparatie { background: rgba(45, 90, 138, 0.1); color: #2d5a8a; }
.blog-card__category--intretinere { background: rgba(138, 45, 45, 0.1); color: #8a2d2d; }
.blog-card__category--sfaturi { background: rgba(90, 45, 106, 0.1); color: #5a2d6a; }
.blog-card__category--ghid { background: rgba(232, 97, 26, 0.1); color: var(--color-orange); }

.blog-card__date {
    font-size: 0.8rem;
    color: var(--color-gray-400);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card__date i {
    font-size: 0.72rem;
}

.blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card__title a {
    color: inherit;
    transition: color var(--transition);
}

.blog-card__title a:hover {
    color: var(--color-orange);
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.blog-card__link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
    margin-top: auto;
}

.blog-card__link:hover {
    gap: 12px;
}

/* Blog Article Page */
.article-page__hero {
    margin-top: 0;
    padding: 170px 0 72px;
    background:
        linear-gradient(145deg, rgba(20, 24, 40, 0.9) 0%, rgba(31, 39, 61, 0.88) 65%, rgba(42, 29, 22, 0.86) 100%),
        var(--article-hero-image, none) center/cover no-repeat;
    background-color: #141828;
    background-blend-mode: multiply, normal;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.article-page__hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -110px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(232, 97, 26, 0.24);
}

.article-page__hero .container {
    position: relative;
    z-index: 1;
}

.article-page__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.article-page__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
    font-weight: 600;
}

.article-page__hero h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.2;
    max-width: 920px;
    margin-bottom: 16px;
}

.article-page__hero p {
    max-width: 860px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.article-page__content {
    padding: 72px 0 60px;
    background: var(--color-white);
}

.article-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
}

.article-page__main,
.article-page__aside {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.article-page__main {
    padding: 30px;
}

.article-page__main h2 {
    color: var(--color-dark);
    font-size: 1.52rem;
    margin: 30px 0 12px;
}

.article-page__main h2:first-child {
    margin-top: 0;
}

.article-page__main p {
    color: var(--color-gray-600);
    line-height: 1.85;
    margin-bottom: 14px;
}

.article-page__main ul,
.article-page__main ol {
    margin: 0 0 14px 22px;
    color: var(--color-gray-600);
    line-height: 1.8;
}

.article-page__note {
    margin: 24px 0;
    border-left: 4px solid var(--color-orange);
    background: rgba(232, 97, 26, 0.08);
    padding: 14px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-gray-700);
}

.article-page__aside {
    padding: 24px;
    align-self: start;
    position: sticky;
    top: 120px;
}

.article-page__aside h3 {
    color: var(--color-dark);
    margin-bottom: 12px;
}

.article-page__aside p {
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 14px;
}

.article-page__aside .btn {
    width: 100%;
    justify-content: center;
}

.article-page__related {
    padding: 0 0 90px;
    background: var(--color-white);
}

.article-page__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.article-page__related-card {
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 18px;
    background: var(--color-gray-100);
    transition: transform var(--transition), box-shadow var(--transition);
}

.article-page__related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.article-page__related-card h3 {
    color: var(--color-dark);
    font-size: 1rem;
    margin-bottom: 8px;
}

.article-page__related-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
    font-size: 0.92rem;
}

@media (max-width: 1024px) {
    .article-page__grid {
        grid-template-columns: 1fr;
    }

    .article-page__aside {
        position: static;
    }

    .article-page__related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .article-page__hero {
        padding: 150px 0 56px;
    }

    .article-page__content {
        padding: 56px 0 48px;
    }

    .article-page__main,
    .article-page__aside {
        padding: 20px;
    }

    .article-page__related {
        padding-bottom: 68px;
    }

    .article-page__related-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: var(--color-white);
}

.newsletter {
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-light));
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(232, 97, 26, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.newsletter__icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.newsletter__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px;
}

.newsletter__desc {
    font-size: 0.92rem;
    color: var(--color-gray-400);
    line-height: 1.7;
    margin-bottom: 28px;
}

.newsletter__field {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter__input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-dark);
    outline: none;
}

.newsletter__input::placeholder {
    color: var(--color-gray-400);
    opacity: 0.55;
}

.newsletter__submit {
    border-radius: 0;
    white-space: nowrap;
}

.newsletter__social-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
}

.newsletter__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.92rem;
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.newsletter__social-link i {
    color: var(--color-orange-light);
    font-size: 1rem;
}

.newsletter__social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

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

    .newsletter {
        padding: 40px 24px;
    }

    .newsletter__field {
        flex-direction: column;
        border-radius: var(--radius-sm);
    }

    .newsletter__social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .newsletter__input {
        border-radius: var(--radius-sm);
    }

    .newsletter__submit {
        border-radius: var(--radius-sm);
        width: 100%;
        justify-content: center;
    }

    .newsletter__social-link {
        padding: 12px;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info {
    padding: 80px 0 0;
    background: var(--color-white);
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.contact-page .contact-info {
    margin-top: 20px;
    padding-top: 36px;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -80px;
}

.contact-page .contact-info__grid {
    margin-top: 0;
}

.contact-info__card {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition);
}

.contact-info__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-info__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-info__icon i {
    font-size: 1.2rem;
    color: var(--color-white);
}

.contact-info__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-info__text {
    font-size: 0.95rem;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info__text a {
    color: var(--color-dark);
    transition: color var(--transition);
}

.contact-info__text a:hover {
    color: var(--color-orange);
}

.contact-info__note {
    font-size: 0.8rem;
    color: var(--color-gray-400);
}

.contact-info__note a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    transition: color var(--transition);
}

.contact-info__note a:hover {
    color: var(--color-orange);
}

/* Contact Form & Map Section */
.contact-section {
    padding: 80px 0 100px;
    background: var(--color-white);
}

.contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-header--left {
    text-align: left;
    margin: 0 0 32px;
    max-width: none;
}

.section-header__desc--left {
    text-align: left;
}

.contact-form__field {
    margin-bottom: 20px;
}

.contact-form__label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-form__label i {
    color: var(--color-orange);
    margin-right: 6px;
    font-size: 0.82rem;
}

.contact-form__required {
    color: #e74c3c;
}

.contact-form__input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-dark);
    background: var(--color-gray-100);
    transition: border-color 0.25s ease, background 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.contact-form__input:focus {
    border-color: var(--color-orange);
    background: var(--color-white);
}

.contact-form__input::placeholder {
    color: var(--color-gray-400);
    opacity: 0.55;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form__submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.contact-form__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: successIn 0.4s ease;
}

.contact-form__success.show {
    display: block;
}

.contact-form__success i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 14px;
}

.contact-form__success h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.contact-form__success p {
    font-size: 0.88rem;
    color: var(--color-gray-400);
}

/* Google Maps */
.contact-section__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
}

.contact-section__map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 1024px) {
    .contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: 40px 0 0;
        margin-top: 0;
    }

    .contact-page .contact-info {
        margin-top: 12px;
        padding-top: 28px;
    }

    .contact-info__grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section__map iframe {
        height: 300px;
    }
}

/* ============================================
   PRODUCT PAGE - SISTEM DE SCURGERE
   ============================================ */
.product-drainage-page .page-header {
    background-image:
        linear-gradient(120deg, rgba(10, 16, 28, 0.82), rgba(17, 24, 39, 0.64)),
        url('/images/products/Sistem_de_scurgere/Sistem_2.png') !important;
    background-size: cover;
    background-position: center 24%;
    background-repeat: no-repeat;
}

.product-drainage-page .page-header::before {
    background: radial-gradient(ellipse at right center, rgba(232, 97, 26, 0.24) 0%, transparent 68%);
}

.product-drainage-page .page-header__overlay {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.38), rgba(15, 23, 42, 0.58)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="72" height="72"><rect fill="none" width="72" height="72"/><path d="M0 36 L36 0 L72 36 L36 72Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
}

.product-drainage-page .page-header__title {
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.product-drainage-page .page-header__subtitle,
.product-drainage-page .breadcrumb__item,
.product-drainage-page .breadcrumb__item a,
.product-drainage-page .breadcrumb__link {
    color: rgba(255, 255, 255, 0.88);
}

.product-drainage-page .breadcrumb__item--active {
    color: #ffd7b8;
}

.product-drainage-page .page-header__content {
    max-width: 940px;
}

.product-drainage-page .page-header__subtitle {
    max-width: 760px;
}

.product-drainage-page .product-hero-highlights {
    margin-top: 28px;
}

.drainage-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.drainage-intro {
    padding-bottom: 40px;
}

.drainage-intro__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.drainage-intro__content {
    display: grid;
    gap: 24px;
}

.drainage-intro__content .section-header {
    text-align: left;
    max-width: none;
    margin: 0;
}

.drainage-intro__points {
    display: grid;
    gap: 16px;
}

.drainage-intro__point {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px 22px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.drainage-intro__point-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(197, 110, 45, 0.14), rgba(224, 165, 110, 0.2));
    border: 1px solid rgba(197, 110, 45, 0.18);
    color: #974a19;
}

.drainage-intro__point-icon i {
    font-size: 1.15rem;
}

.drainage-intro__point strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-dark);
    font-size: 1.02rem;
}

.drainage-intro__point p {
    margin: 0;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.drainage-decision-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
    background:
        linear-gradient(150deg, rgba(10, 16, 28, 0.8), rgba(18, 26, 38, 0.72)),
        url('../images/products/Sistem_de_scurgere/Sistem_1.png') center/cover no-repeat,
        radial-gradient(circle at top right, rgba(197, 110, 45, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(20, 28, 39, 0.98) 0%, rgba(42, 54, 71, 0.94) 52%, rgba(118, 71, 38, 0.88) 100%);
    color: #ffffff;
    box-shadow: 0 24px 54px rgba(17, 24, 39, 0.18);
}

.drainage-mini-portfolio {
    padding: 20px 0 70px;
}

.drainage-mini-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.drainage-mini-portfolio__card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.drainage-mini-portfolio__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.drainage-mini-portfolio__media {
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eef2f8;
}

.drainage-mini-portfolio__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.drainage-mini-portfolio__caption {
    padding: 14px 16px;
    color: var(--color-gray-700);
    font-size: 0.9rem;
    line-height: 1.55;
}

.drainage-decision-card::before {
    content: '';
    position: absolute;
    inset: auto -60px -80px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.drainage-decision-card > * {
    position: relative;
    z-index: 1;
}

.drainage-decision-card__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 223, 202, 0.88);
}

.drainage-decision-card h3 {
    font-size: 1.45rem;
    line-height: 1.35;
}

.drainage-decision-card__list {
    display: grid;
    gap: 14px;
}

.drainage-decision-card__list li {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drainage-decision-card__list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.drainage-decision-card__list strong {
    font-size: 0.98rem;
    color: #ffffff;
}

.drainage-decision-card__list span,
.drainage-decision-card__note {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.72;
}

.drainage-dimensions {
    padding: 24px 0 72px;
    background:
        linear-gradient(180deg, rgba(232, 97, 26, 0.04), rgba(255, 255, 255, 0.96)),
        radial-gradient(circle at 8% 24%, rgba(26, 26, 46, 0.05), transparent 42%);
}

.drainage-dimensions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.drainage-option-card {
    padding: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.drainage-option-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(197, 110, 45, 0.08);
    border: 1px solid rgba(197, 110, 45, 0.16);
    color: #974a19;
    font-size: 0.82rem;
    font-weight: 700;
}

.drainage-option-card h3 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.1;
    color: var(--color-dark);
}

.drainage-option-card__lead,
.drainage-option-card__note {
    color: var(--color-gray-600);
    line-height: 1.72;
}

.drainage-option-card__list,
.drainage-material-card__list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.drainage-option-card__list li,
.drainage-material-card__list li {
    position: relative;
    padding-left: 18px;
    color: var(--color-gray-700);
    line-height: 1.65;
}

.drainage-option-card__list li::before,
.drainage-material-card__list li::before {
    content: '';
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c56e2d, #e0a56e);
    transform: translateY(-50%);
}

.drainage-option-card__note {
    margin-top: 18px;
}

.drainage-materials {
    padding: 72px 0;
}

.drainage-materials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 26px;
    align-items: start;
}

.drainage-material-card {
    padding: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.drainage-material-card--featured {
    border-color: rgba(197, 110, 45, 0.22);
    box-shadow: 0 18px 42px rgba(151, 74, 25, 0.08);
}

.drainage-material-card__pill {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(197, 110, 45, 0.08);
    border: 1px solid rgba(197, 110, 45, 0.16);
    color: #974a19;
    font-size: 0.8rem;
    font-weight: 700;
}

.drainage-material-card h3 {
    margin: 18px 0 10px;
    color: var(--color-dark);
    font-size: 1.32rem;
}

.drainage-material-card p {
    color: var(--color-gray-600);
    line-height: 1.72;
}

.drainage-types__table-wrap {
    overflow-x: auto;
    margin-bottom: 14px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    background: var(--color-white);
}

.drainage-specs {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.drainage-specs thead th {
    background: linear-gradient(135deg, #1f2736, #2d3748);
    color: #ffffff;
    padding: 14px 16px;
    text-align: left;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.drainage-specs tbody th,
.drainage-specs tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--color-gray-200);
    vertical-align: top;
    font-size: 0.92rem;
}

.drainage-specs tbody th {
    color: var(--color-dark);
    font-weight: 700;
    background: rgba(26, 26, 46, 0.02);
}

.drainage-specs tbody tr:last-child th,
.drainage-specs tbody tr:last-child td {
    border-bottom: 0;
}

.drainage-specs-note {
    color: var(--color-gray-600);
    line-height: 1.7;
}

.drainage-colors-section {
    padding-top: 12px;
    padding-bottom: 72px;
}

.drainage-colors {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.drainage-colors__title {
    margin: 0 0 14px;
    font-size: 1.1rem;
    color: var(--color-dark);
}

.drainage-colors__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.color-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--color-gray-200);
    background: linear-gradient(180deg, #ffffff, #fbfbfd);
}

.color-chip__swatch {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid var(--chip-border, rgba(0, 0, 0, 0.18));
    background: var(--chip, #cccccc);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.color-chip strong {
    display: block;
    color: var(--color-dark);
    font-size: 0.92rem;
    line-height: 1.2;
}

.color-chip small {
    color: var(--color-gray-600);
    font-size: 0.78rem;
}

.drainage-structure {
    padding: 24px 0 80px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(232, 97, 26, 0.03));
}

.drainage-structure__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.drainage-structure__figure {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.drainage-structure__figure img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    background: #f8fafc;
}

.drainage-structure__placeholder {
    display: none;
    min-height: 320px;
    padding: 28px;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
        repeating-linear-gradient(135deg, rgba(232, 97, 26, 0.12) 0, rgba(232, 97, 26, 0.12) 16px, rgba(255, 255, 255, 0) 16px, rgba(255, 255, 255, 0) 32px);
}

.drainage-structure__figure.is-empty .drainage-structure__placeholder {
    display: flex;
}

.drainage-structure__placeholder i {
    font-size: 2rem;
    color: var(--color-orange);
}

.drainage-structure__placeholder p {
    margin: 0;
    color: var(--color-gray-600);
}

.drainage-structure__placeholder strong {
    color: var(--color-dark);
    word-break: break-word;
}

.drainage-structure__figure figcaption {
    padding: 14px 18px 16px;
    font-size: 0.88rem;
    color: var(--color-gray-600);
    border-top: 1px solid var(--color-gray-200);
}

.drainage-structure__content {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.drainage-structure__content h3 {
    font-size: 1.3rem;
    color: var(--color-dark);
}

.drainage-components {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}

.drainage-components li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-gray-700);
    font-size: 0.95rem;
    line-height: 1.65;
}

.drainage-components span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    flex-shrink: 0;
    margin-top: 2px;
}

.drainage-structure__note {
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(26, 26, 46, 0.04);
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-700);
    line-height: 1.7;
}

.drainage-benefits {
    padding-top: 72px;
}

.drainage-benefits .services__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-drainage-page .drainage-benefits .service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.product-drainage-page .drainage-benefits .service-card__icon i {
    font-size: 1.3rem;
    line-height: 1;
}

.product-drainage-page .drainage-benefits .service-card__title {
    margin-top: 0;
}

.drainage-intro .service-card,
.drainage-benefits .service-card {
    border-top: 4px solid rgba(232, 97, 26, 0.22);
}

.drainage-process {
    padding: 72px 0 80px;
}

.drainage-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.drainage-step-card {
    position: relative;
    padding: 28px 24px 24px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.drainage-step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: linear-gradient(145deg, #c56e2d, #e0a56e);
    color: #fffaf5;
    font-size: 1rem;
    font-weight: 800;
}

.drainage-step-card h3 {
    margin-bottom: 10px;
    color: var(--color-dark);
    font-size: 1.12rem;
    line-height: 1.4;
}

.drainage-step-card p {
    color: var(--color-gray-600);
    line-height: 1.72;
    margin: 0;
}

@media (max-width: 1024px) {
    .drainage-intro__layout,
    .drainage-structure__layout {
        grid-template-columns: 1fr;
    }

    .drainage-materials__grid,
    .drainage-mini-portfolio__grid,
    .drainage-benefits .services__grid,
    .drainage-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .drainage-intro,
    .drainage-dimensions,
    .drainage-materials,
    .drainage-colors-section,
    .drainage-benefits,
    .drainage-process,
    .drainage-structure {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .drainage-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .drainage-intro__point {
        grid-template-columns: 48px 1fr;
        padding: 18px;
    }

    .product-drainage-page .drainage-benefits .service-card__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .product-drainage-page .drainage-benefits .service-card__icon i {
        font-size: 1.2rem;
    }

    .drainage-option-card,
    .drainage-material-card,
    .drainage-decision-card,
    .drainage-step-card {
        padding: 22px;
    }

    .drainage-dimensions__grid,
    .drainage-materials__grid,
    .drainage-mini-portfolio__grid,
    .drainage-colors__grid,
    .drainage-benefits .services__grid,
    .drainage-process__grid,
    .drainage-components {
        grid-template-columns: 1fr;
    }

    .drainage-types__table-wrap {
        margin-bottom: 16px;
    }

    .drainage-colors {
        padding: 16px;
    }

    .drainage-structure__content,
    .drainage-structure__figure figcaption {
        padding-left: 16px;
        padding-right: 16px;
    }

    .drainage-structure__figure img {
        max-height: 360px;
    }
}

/* ============================================
   GLOBAL NON-HOMEPAGE BACKGROUND THEME
   ============================================ */
body:not(.homepage) {
    background:
        radial-gradient(circle at 10% 0%, rgba(232, 97, 26, 0.08), transparent 28%),
        radial-gradient(circle at 92% 14%, rgba(232, 97, 26, 0.06), transparent 26%),
        radial-gradient(circle at 80% 84%, rgba(232, 97, 26, 0.04), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    background-attachment: fixed;
}

body:not(.homepage) section:not(.page-header):not(.article-page__hero):not(.cta-banner),
body:not(.homepage) .portfolio-section,
body:not(.homepage) .faq-section,
body:not(.homepage) .projects-section,
body:not(.homepage) .blog-section {
    background: transparent !important;
}

body:not(.homepage) .container > .section-header,
body:not(.homepage) .section-header {
    position: relative;
    z-index: 1;
}

/* ============================================
   PRODUCT PAGES PREMIUM THEME
   ============================================ */
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page),
body.product-modular-page:not(.product-modular-launch-page) {
    --product-premium-bg: #f5f1ea;
    --product-premium-surface: rgba(255, 253, 250, 0.9);
    --product-premium-surface-strong: rgba(255, 255, 255, 0.96);
    --product-premium-soft: #f8f4ee;
    --product-premium-ink: #171d28;
    --product-premium-ink-soft: #4f596a;
    --product-premium-line: rgba(23, 29, 40, 0.1);
    --product-premium-accent: #c56e2d;
    --product-premium-accent-deep: #974a19;
    --product-premium-shadow: 0 24px 60px rgba(17, 24, 39, 0.1);
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.08), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(197, 110, 45, 0.05), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, var(--product-premium-bg) 100%);
    background-attachment: scroll;
    color: var(--product-premium-ink);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .section-header__tag,
body.product-modular-page:not(.product-modular-launch-page) .section-header__tag {
    background: rgba(197, 110, 45, 0.12);
    color: var(--product-premium-accent-deep);
    border: 1px solid rgba(197, 110, 45, 0.14);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .section-header__title,
body.product-modular-page:not(.product-modular-launch-page) .section-header__title {
    color: var(--product-premium-ink);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .section-header__desc,
body.product-modular-page:not(.product-modular-launch-page) .section-header__desc {
    color: var(--product-premium-ink-soft);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .page-header,
body.product-modular-page:not(.product-modular-launch-page) .page-header {
    background-color: #141a24;
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .page-header::before,
body.product-modular-page:not(.product-modular-launch-page) .page-header::before {
    background: radial-gradient(ellipse, rgba(197, 110, 45, 0.16) 0%, transparent 72%);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .page-header__title,
body.product-modular-page:not(.product-modular-launch-page) .page-header__title {
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .page-header__subtitle,
body.product-modular-page:not(.product-modular-launch-page) .page-header__subtitle {
    max-width: 64ch;
    color: rgba(255, 255, 255, 0.88);
}

.technical-details {
    margin-top: 14px;
    border: 1px solid rgba(197, 110, 45, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
    overflow: hidden;
}

.modular-models__tech-grid,
.product-features__meta {
    align-items: start;
}

.technical-details--wide {
    margin-top: 20px;
}

.technical-details__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    list-style: none;
    color: var(--product-premium-accent-deep, var(--color-orange-dark));
    background:
        linear-gradient(135deg, rgba(197, 110, 45, 0.12), rgba(255, 255, 255, 0.72));
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
    transition: background var(--transition), color var(--transition);
}

.technical-details__summary::-webkit-details-marker {
    display: none;
}

.technical-details__summary i {
    font-size: 0.78rem;
    transition: transform var(--transition);
}

.technical-details[open] .technical-details__summary {
    border-bottom: 1px solid rgba(197, 110, 45, 0.14);
    color: var(--product-premium-ink, var(--color-dark));
    background:
        linear-gradient(135deg, rgba(197, 110, 45, 0.16), rgba(255, 255, 255, 0.9));
}

.technical-details[open] .technical-details__summary i {
    transform: rotate(180deg);
}

.technical-details > :not(summary) {
    margin: 0;
    animation: technicalDetailsReveal 0.22s ease both;
}

.technical-details > table,
.technical-details > ul,
.technical-details > div {
    padding: 14px;
}

.technical-details > table {
    width: 100%;
}

.technical-details .metal-tile-models__table,
.technical-details .corrugated-types__table,
.technical-details .drainage-specs,
.technical-details .modular-comparison__table {
    margin-top: 0;
}

@keyframes technicalDetailsReveal {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-hero-highlights__item,
body.product-modular-page:not(.product-modular-launch-page) .product-hero-highlights__item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(7, 12, 20, 0.18);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__content,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__content--full,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__image-media,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__image-placeholder,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__highlight,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__stat,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-features__meta-card,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-features__block,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-table-wrap,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-colors__swatch,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-links__card,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-advantages__card,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-projects__summary,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-project-card,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .metal-tile-models__card,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .corrugated-types__card,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .corrugated-lead__wrap,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-size-card,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-types__table-wrap,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-colors,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-structure__figure,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-structure__content,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-intro .service-card,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-benefits .service-card,
body.product-modular-page:not(.product-modular-launch-page) .product-intro__content,
body.product-modular-page:not(.product-modular-launch-page) .product-intro__image-placeholder,
body.product-modular-page:not(.product-modular-launch-page) .product-intro__highlight,
body.product-modular-page:not(.product-modular-launch-page) .product-intro__stat,
body.product-modular-page:not(.product-modular-launch-page) .product-features__meta-card,
body.product-modular-page:not(.product-modular-launch-page) .product-table-wrap,
body.product-modular-page:not(.product-modular-launch-page) .product-colors__swatch,
body.product-modular-page:not(.product-modular-launch-page) .product-links__card,
body.product-modular-page:not(.product-modular-launch-page) .product-advantages__card,
body.product-modular-page:not(.product-modular-launch-page) .product-projects__summary,
body.product-modular-page:not(.product-modular-launch-page) .product-project-card,
body.accessories-page .catalog-intro__panel,
body.accessories-page .accessory-guide__card,
body.accessories-page .product-links__intro,
body.accessories-page .product-links__card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 251, 247, 0.92) 100%);
    border: 1px solid var(--product-premium-line);
    box-shadow: 0 16px 44px rgba(17, 24, 39, 0.07);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-links__card:hover,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-advantages__card:hover,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .metal-tile-models__card:hover,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .corrugated-types__card:hover,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-project-card:hover,
body.accessories-page .accessory-guide__card:hover,
body.product-modular-page:not(.product-modular-launch-page) .product-links__card:hover,
body.product-modular-page:not(.product-modular-launch-page) .product-advantages__card:hover,
body.product-modular-page:not(.product-modular-launch-page) .product-project-card:hover {
    border-color: rgba(197, 110, 45, 0.24);
    box-shadow: 0 22px 52px rgba(17, 24, 39, 0.11);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__lead,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__highlight span,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__stat span,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-features__meta-card span,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-advantages__desc,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-links__desc,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-projects__summary p,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-project-card__body p,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .metal-tile-models__desc,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .corrugated-types__desc,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-structure__figure figcaption,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-structure__placeholder p,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-components li,
body.accessories-page .catalog-intro__lead,
body.accessories-page .catalog-intro__aside p,
body.accessories-page .accessory-guide__intro p,
body.accessories-page .accessory-guide__desc,
body.accessories-page .product-links__desc,
body.accessories-page .product-links__intro p,
body.product-modular-page:not(.product-modular-launch-page) .product-intro__lead,
body.product-modular-page:not(.product-modular-launch-page) .product-intro__highlight span,
body.product-modular-page:not(.product-modular-launch-page) .product-intro__stat span,
body.product-modular-page:not(.product-modular-launch-page) .product-features__meta-card span,
body.product-modular-page:not(.product-modular-launch-page) .product-links__desc,
body.product-modular-page:not(.product-modular-launch-page) .product-projects__summary p {
    color: var(--product-premium-ink-soft);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__content strong,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-features__meta-card strong,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-advantages__title,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-links__title,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .metal-tile-models__title,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .corrugated-types__title,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-project-card__body h3,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-size-card h3,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-colors__title,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-structure__content h3,
body.accessories-page .catalog-intro__content .section-header__title,
body.accessories-page .accessory-guide__title,
body.product-modular-page:not(.product-modular-launch-page) .product-advantages__title,
body.product-modular-page:not(.product-modular-launch-page) .product-links__title,
body.product-modular-page:not(.product-modular-launch-page) .product-project-card__body h3 {
    color: var(--product-premium-ink);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-table thead th,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-specs thead th,
body.product-modular-page:not(.product-modular-launch-page) .product-table thead th {
    background: linear-gradient(90deg, #1a2230 0%, #34465b 100%);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-table tbody tr:nth-child(even),
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .drainage-specs tbody tr:nth-child(even),
body.product-modular-page:not(.product-modular-launch-page) .product-table tbody tr:nth-child(even) {
    background: rgba(248, 244, 238, 0.72);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-pricing,
body.product-modular-page:not(.product-modular-launch-page) .product-pricing,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .cta-banner,
body.product-modular-page:not(.product-modular-launch-page) .cta-banner {
    background:
        radial-gradient(circle at top right, rgba(197, 110, 45, 0.18), transparent 26%),
        linear-gradient(115deg, rgba(20, 28, 39, 0.96) 0%, rgba(44, 56, 73, 0.92) 48%, rgba(122, 70, 34, 0.82) 100%);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .cta-banner::before,
body.product-modular-page:not(.product-modular-launch-page) .cta-banner::before {
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .cta-banner .btn--white,
body.product-modular-page:not(.product-modular-launch-page) .cta-banner .btn--white {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--product-premium-accent-deep);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .cta-banner .btn--white:hover,
body.product-modular-page:not(.product-modular-launch-page) .cta-banner .btn--white:hover {
    background-color: #f6f0e9;
    border-color: #f6f0e9;
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .cta-banner .btn--outline-white,
body.product-modular-page:not(.product-modular-launch-page) .cta-banner .btn--outline-white {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.34);
    background-color: rgba(255, 255, 255, 0.06);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .cta-banner .btn--outline-white:hover,
body.product-modular-page:not(.product-modular-launch-page) .cta-banner .btn--outline-white:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.56);
}

body.accessories-page .catalog-intro {
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 244, 238, 0.66) 100%);
}

body.accessories-page .catalog-intro__chips span {
    border-color: rgba(197, 110, 45, 0.18);
    background: rgba(197, 110, 45, 0.08);
    color: var(--product-premium-ink);
}

body.accessories-page .catalog-intro__chips i,
body.accessories-page .catalog-intro__points i,
body.accessories-page .product-links__arrow,
body.product-modular-page:not(.product-modular-launch-page) .product-links__arrow,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page) .product-links__arrow {
    color: var(--product-premium-accent-deep);
}

body.accessories-page .catalog-intro__stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.accessories-page .accessory-guide {
    background: transparent;
}

body.accessories-page .accessory-guide__image-wrap,
body.accessories-page .product-links__media {
    background: linear-gradient(160deg, #faf7f2 0%, #f2f5f9 100%);
}

body.product-drainage-page .drainage-types,
body.product-drainage-page .drainage-structure {
    background: transparent;
}

body.product-drainage-page .drainage-colors__grid .color-chip {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.92));
    border-color: var(--product-premium-line);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .text-accent,
body.product-modular-page:not(.product-modular-launch-page) .text-accent {
    color: var(--product-premium-accent-deep);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .metal-tile-intro__points span,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-pricing__chips span,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-colors-section__badge,
body.accessories-page .product-links__intro-badge,
body.product-modular-page:not(.product-modular-launch-page) .product-pricing__chips span,
body.product-modular-page:not(.product-modular-launch-page) .product-colors-section__badge {
    border-color: rgba(197, 110, 45, 0.18);
    background: rgba(197, 110, 45, 0.08);
    color: var(--product-premium-ink);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .metal-tile-intro__points i,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-intro__highlight i,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-features__meta-card i,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-pricing__chips i,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .service-card__icon i,
body.accessories-page .catalog-intro__chips i,
body.accessories-page .catalog-intro__points i,
body.accessories-page .product-links__intro-badge i,
body.accessories-page .product-links__list i,
body.product-modular-page:not(.product-modular-launch-page) .product-intro__highlight i,
body.product-modular-page:not(.product-modular-launch-page) .product-features__meta-card i,
body.product-modular-page:not(.product-modular-launch-page) .product-pricing__chips i {
    color: var(--product-premium-accent-deep);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-advantages__icon,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-links__icon,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .service-card__icon,
body.accessories-page .product-links__icon,
body.product-modular-page:not(.product-modular-launch-page) .product-advantages__icon,
body.product-modular-page:not(.product-modular-launch-page) .product-links__icon {
    background: linear-gradient(145deg, #c56e2d, #e0a56e);
    box-shadow: 0 14px 28px rgba(151, 74, 25, 0.18);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-links__icon,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .service-card__icon,
body.accessories-page .product-links__icon,
body.product-modular-page:not(.product-modular-launch-page) .product-links__icon {
    color: #fffaf5;
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-links__intro,
body.accessories-page .product-links__intro,
body.product-modular-page:not(.product-modular-launch-page) .product-links__intro {
    border-color: var(--product-premium-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 243, 0.92));
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-links__media,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .metal-tile-models__media,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .corrugated-types__media,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .shingle-colors-group,
body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .shingle-visual-colors__group,
body.accessories-page .accessory-guide__image-wrap,
body.product-modular-page:not(.product-modular-launch-page) .product-intro__image-placeholder,
body.product-modular-page:not(.product-modular-launch-page) .product-colors-section__group {
    background: linear-gradient(160deg, #faf7f2 0%, #f2f5f9 100%);
}

body:is(.product-metal-tile-page, .product-shingle-page, .product-corrugated-page, .product-drainage-page, .accessories-page) .product-links__list li,
body.accessories-page .catalog-intro__points li,
body.product-drainage-page .drainage-components li {
    color: var(--product-premium-ink-soft);
}

body.product-drainage-page .drainage-components span {
    background: linear-gradient(145deg, #c56e2d, #e0a56e);
    box-shadow: 0 10px 20px rgba(151, 74, 25, 0.16);
}

/* ============================================
   PORTFOLIO PAGE PREMIUM THEME
   ============================================ */
body.portfolio-page {
    --portfolio-premium-bg: #f5f1ea;
    --portfolio-premium-surface: rgba(255, 253, 250, 0.94);
    --portfolio-premium-surface-strong: rgba(255, 255, 255, 0.98);
    --portfolio-premium-line: rgba(23, 29, 40, 0.1);
    --portfolio-premium-ink: #171d28;
    --portfolio-premium-ink-soft: #536073;
    --portfolio-premium-accent: #c56e2d;
    --portfolio-premium-accent-deep: #974a19;
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.08), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(197, 110, 45, 0.05), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, var(--portfolio-premium-bg) 100%);
    background-attachment: scroll;
    color: var(--portfolio-premium-ink);
}

body.portfolio-page .section-header__tag {
    background: rgba(197, 110, 45, 0.12);
    border: 1px solid rgba(197, 110, 45, 0.16);
    color: var(--portfolio-premium-accent-deep);
}

body.portfolio-page .section-header__title {
    color: var(--portfolio-premium-ink);
}

body.portfolio-page .section-header__desc {
    color: var(--portfolio-premium-ink-soft);
}

body.portfolio-page .page-header {
    background-color: #141a24;
}

body.portfolio-page .page-header::before {
    background: radial-gradient(ellipse, rgba(197, 110, 45, 0.16) 0%, transparent 72%);
}

body.portfolio-page .page-header__content {
    max-width: 980px;
}

body.portfolio-page .page-header__title {
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

body.portfolio-page .page-header__subtitle {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
}

body.portfolio-page .product-hero-highlights {
    margin-top: 28px;
}

body.portfolio-page .product-hero-highlights__item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(7, 12, 20, 0.18);
}

.portfolio-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

body.portfolio-page .page-header__breadcrumb {
    margin-top: 0;
    margin-bottom: 18px;
}

body.portfolio-page .portfolio-section {
    padding: 96px 0 84px;
    background: transparent;
}

.portfolio-curation {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 24px;
    padding: 24px 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 246, 0.92) 100%);
    border: 1px solid var(--portfolio-premium-line);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.portfolio-curation__copy {
    display: grid;
    gap: 10px;
}

.portfolio-curation__copy strong {
    color: var(--portfolio-premium-ink);
    font-size: 1.08rem;
}

.portfolio-curation__copy p {
    margin: 0;
    color: var(--portfolio-premium-ink-soft);
    line-height: 1.75;
}

.portfolio-curation__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.portfolio-curation__chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(197, 110, 45, 0.18);
    background: rgba(197, 110, 45, 0.08);
    color: var(--portfolio-premium-ink);
    font-size: 0.84rem;
    font-weight: 700;
}

.portfolio-curation__chips i {
    color: var(--portfolio-premium-accent-deep);
}

.portfolio-filters-shell {
    display: grid;
    gap: 18px;
    margin-bottom: 32px;
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 243, 0.92));
    border: 1px solid var(--portfolio-premium-line);
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
}

.portfolio-filters__meta {
    display: grid;
    gap: 6px;
}

.portfolio-filters__meta strong {
    color: var(--portfolio-premium-ink);
    font-size: 1rem;
}

.portfolio-filters__meta p {
    margin: 0;
    color: var(--portfolio-premium-ink-soft);
    line-height: 1.7;
}

body.portfolio-page .portfolio-filters {
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 0;
}

body.portfolio-page .portfolio-filters__btn {
    padding: 11px 20px;
    border: 1px solid rgba(197, 110, 45, 0.18);
    background: rgba(197, 110, 45, 0.06);
    color: var(--portfolio-premium-ink);
    box-shadow: none;
}

@media (hover: hover) {
    body.portfolio-page .portfolio-filters__btn:hover {
        border-color: rgba(197, 110, 45, 0.3);
        color: var(--portfolio-premium-accent-deep);
        background: rgba(197, 110, 45, 0.1);
    }
}

body.portfolio-page .portfolio-filters__btn.portfolio-filters__btn--active,
body.portfolio-page .portfolio-filters__btn.portfolio-filters__btn--active:hover,
body.portfolio-page .portfolio-filters__btn.portfolio-filters__btn--active:focus-visible,
body.portfolio-page .portfolio-filters__btn.portfolio-filters__btn--active:active {
    background: linear-gradient(145deg, #c56e2d, #df9b62);
    border-color: #c56e2d;
    color: #fffaf5;
    box-shadow: 0 12px 24px rgba(151, 74, 25, 0.18);
}

body.portfolio-page .portfolio-grid {
    gap: 26px;
}

body.portfolio-page .portfolio-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 247, 0.94));
    border: 1px solid var(--portfolio-premium-line);
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
}

body.portfolio-page .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(17, 24, 39, 0.12);
    border-color: rgba(197, 110, 45, 0.22);
}

body.portfolio-page .portfolio-card--real .portfolio-card__image-link {
    padding: 18px 18px 14px;
}

body.portfolio-page .portfolio-card .project-visual {
    min-height: 236px;
    border-radius: 20px;
}

body.portfolio-page .portfolio-card--real .portfolio-card__badge {
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fffaf5;
    box-shadow: none;
}

body.portfolio-page .portfolio-card__content {
    padding: 0 24px 24px;
}

body.portfolio-page .portfolio-card__eyebrow {
    color: var(--portfolio-premium-accent-deep);
}

body.portfolio-page .portfolio-card__title {
    color: var(--portfolio-premium-ink);
    font-size: 1.14rem;
}

body.portfolio-page .portfolio-card__desc {
    color: var(--portfolio-premium-ink-soft);
}

body.portfolio-page .portfolio-card__location {
    color: #5c687a;
}

body.portfolio-page .portfolio-card__location i {
    color: var(--portfolio-premium-accent-deep);
}

body.portfolio-page .portfolio-card__link {
    color: var(--portfolio-premium-accent-deep);
}

body.portfolio-page .portfolio-stats {
    padding: 0 0 96px;
    background: transparent;
}

body.portfolio-page .portfolio-stats__grid {
    gap: 24px;
}

body.portfolio-page .portfolio-stats__item {
    padding: 28px 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 247, 0.92));
    border: 1px solid var(--portfolio-premium-line);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.07);
}

body.portfolio-page .portfolio-stats__icon {
    background: linear-gradient(145deg, #c56e2d, #e0a56e);
    box-shadow: 0 14px 30px rgba(151, 74, 25, 0.18);
}

body.portfolio-page .portfolio-stats__number {
    color: var(--portfolio-premium-ink);
}

body.portfolio-page .portfolio-stats__label {
    color: var(--portfolio-premium-ink-soft);
}

body.portfolio-page .cta-banner {
    background:
        radial-gradient(circle at top right, rgba(197, 110, 45, 0.18), transparent 26%),
        linear-gradient(115deg, rgba(20, 28, 39, 0.96) 0%, rgba(44, 56, 73, 0.92) 48%, rgba(122, 70, 34, 0.82) 100%);
}

body.portfolio-page .cta-banner::before {
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
}

body.portfolio-page .cta-banner .btn--white {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--portfolio-premium-accent-deep);
}

body.portfolio-page .cta-banner .btn--white:hover {
    background-color: #f6f0e9;
    border-color: #f6f0e9;
}

body.portfolio-page .cta-banner .btn--outline-white {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.34);
    background-color: rgba(255, 255, 255, 0.06);
}

body.portfolio-page .cta-banner .btn--outline-white:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 1024px) {
    .portfolio-curation {
        grid-template-columns: 1fr;
    }

    .portfolio-curation__chips {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .portfolio-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .portfolio-curation,
    .portfolio-filters-shell {
        padding: 20px;
        border-radius: 18px;
    }

    body.portfolio-page .portfolio-card--real .portfolio-card__image-link {
        padding: 16px 16px 12px;
    }

    body.portfolio-page .portfolio-card__content {
        padding: 0 18px 18px;
    }

    body.portfolio-page .portfolio-card .project-visual {
        min-height: 220px;
    }
}

/* ============================================
   ABOUT PAGE PREMIUM THEME
   ============================================ */
body.about-page {
    --about-premium-bg: #f5f1ea;
    --about-premium-surface: rgba(255, 253, 250, 0.94);
    --about-premium-surface-strong: rgba(255, 255, 255, 0.98);
    --about-premium-line: rgba(23, 29, 40, 0.1);
    --about-premium-ink: #171d28;
    --about-premium-ink-soft: #536073;
    --about-premium-accent: #c56e2d;
    --about-premium-accent-deep: #974a19;
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.08), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(197, 110, 45, 0.05), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, var(--about-premium-bg) 100%);
    background-attachment: scroll;
    color: var(--about-premium-ink);
}

body.about-page .section-header__tag {
    background: rgba(197, 110, 45, 0.12);
    border: 1px solid rgba(197, 110, 45, 0.16);
    color: var(--about-premium-accent-deep);
}

body.about-page .section-header__title {
    color: var(--about-premium-ink);
}

body.about-page .section-header__desc,
body.about-page .about-story__text,
body.about-page .about-values__card-desc,
body.about-page .about-team__bio,
body.about-page .about-certifications__desc,
body.about-page .about-story__highlight span,
body.about-page .about-certifications__partner-placeholder span {
    color: var(--about-premium-ink-soft);
}

body.about-page .text-accent {
    color: var(--about-premium-accent-deep);
}

body.about-page .page-header {
    background-color: #141a24;
}

body.about-page .page-header::before {
    background: radial-gradient(ellipse, rgba(197, 110, 45, 0.16) 0%, transparent 72%);
}

body.about-page .page-header__content {
    max-width: 960px;
}

body.about-page .page-header__title {
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

body.about-page .page-header__subtitle {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
}

body.about-page .product-hero-highlights {
    margin-top: 28px;
}

body.about-page .product-hero-highlights__item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(7, 12, 20, 0.18);
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

body.about-page .page-header .breadcrumb {
    margin-bottom: 18px;
}

body.about-page .about-story,
body.about-page .about-values,
body.about-page .about-team,
body.about-page .about-certifications {
    background: transparent;
}

body.about-page .about-story {
    padding: 96px 0 72px;
}

body.about-page .about-story__grid {
    gap: 32px;
    align-items: stretch;
}

body.about-page .about-story__content {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.94));
    border: 1px solid var(--about-premium-line);
    box-shadow: 0 20px 48px rgba(17, 24, 39, 0.08);
}

body.about-page .about-story__mobile-photo {
    display: none;
}

body.about-page .about-story__highlight {
    background: rgba(197, 110, 45, 0.08);
    border-color: rgba(197, 110, 45, 0.16);
}

body.about-page .about-story__highlight i {
    color: var(--about-premium-accent-deep);
}

body.about-page .about-story__image-placeholder {
    height: 100%;
    min-height: 440px;
    border: 1px solid var(--about-premium-line);
    box-shadow: 0 20px 48px rgba(17, 24, 39, 0.1);
    background:
        radial-gradient(circle at top right, rgba(197, 110, 45, 0.18), transparent 28%),
        linear-gradient(140deg, rgba(20, 28, 39, 0.98) 0%, rgba(39, 51, 67, 0.94) 54%, rgba(121, 74, 40, 0.86) 100%);
    color: rgba(255, 255, 255, 0.84);
}

body.about-page .about-story__image-placeholder i {
    color: #f2c8a7;
}

body.about-page .about-stats {
    padding: 0 0 88px;
    background: transparent;
}

body.about-page .about-stats::before,
body.about-page .about-stats::after {
    display: none;
}

body.about-page .about-stats__grid {
    gap: 24px;
}

body.about-page .about-stats__item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 247, 0.92));
    border: 1px solid var(--about-premium-line);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.07);
}

body.about-page .about-stats__item:hover {
    border-color: rgba(197, 110, 45, 0.24);
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.1);
}

body.about-page .about-stats__icon,
body.about-page .about-values__card-icon,
body.about-page .about-certifications__icon {
    background: linear-gradient(145deg, rgba(197, 110, 45, 0.12), rgba(224, 165, 110, 0.22));
    border-color: rgba(197, 110, 45, 0.2);
}

body.about-page .about-stats__icon i,
body.about-page .about-values__card-icon i,
body.about-page .about-certifications__icon i {
    color: var(--about-premium-accent-deep);
}

body.about-page .about-stats__number,
body.about-page .about-stats__suffix,
body.about-page .about-values__card-title,
body.about-page .about-team__name,
body.about-page .about-certifications__title,
body.about-page .about-certifications__partners-title {
    color: var(--about-premium-ink);
}

body.about-page .about-stats__label {
    color: var(--about-premium-ink-soft);
    background: rgba(197, 110, 45, 0.08);
    border-color: rgba(197, 110, 45, 0.18);
}

body.about-page .about-values,
body.about-page .about-team,
body.about-page .about-certifications {
    padding: 88px 0;
}

body.about-page .about-values__grid,
body.about-page .about-team__grid,
body.about-page .about-certifications__grid {
    gap: 24px;
}

body.about-page .about-values__card,
body.about-page .about-team__card,
body.about-page .about-certifications__card,
body.about-page .about-certifications__partner-placeholder {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 247, 0.94));
    border: 1px solid var(--about-premium-line);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.07);
}

body.about-page .about-values__card:hover,
body.about-page .about-team__card:hover,
body.about-page .about-certifications__card:hover,
body.about-page .about-certifications__partner-placeholder:hover {
    border-color: rgba(197, 110, 45, 0.24);
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.1);
}

body.about-page .about-team__photo-placeholder {
    background:
        radial-gradient(circle at top right, rgba(197, 110, 45, 0.16), transparent 28%),
        linear-gradient(140deg, rgba(20, 28, 39, 0.98) 0%, rgba(39, 51, 67, 0.94) 54%, rgba(121, 74, 40, 0.82) 100%);
}

body.about-page .about-team__role {
    color: var(--about-premium-accent-deep);
}

body.about-page .about-team__social a {
    background: rgba(197, 110, 45, 0.08);
    border: 1px solid rgba(197, 110, 45, 0.14);
    color: var(--about-premium-accent-deep);
}

body.about-page .about-team__social a:hover {
    background: linear-gradient(145deg, #c56e2d, #df9b62);
    border-color: #c56e2d;
    color: #fffaf5;
}

body.about-page .about-certifications__partners-grid {
    gap: 18px;
}

body.about-page .about-certifications__partner-placeholder:hover span {
    color: var(--about-premium-accent-deep);
}

body.about-page .cta-banner {
    background:
        radial-gradient(circle at top right, rgba(197, 110, 45, 0.18), transparent 26%),
        linear-gradient(115deg, rgba(20, 28, 39, 0.96) 0%, rgba(44, 56, 73, 0.92) 48%, rgba(122, 70, 34, 0.82) 100%);
}

body.about-page .cta-banner::before {
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
}

body.about-page .cta-banner .btn--white {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--about-premium-accent-deep);
}

body.about-page .cta-banner .btn--white:hover {
    background-color: #f6f0e9;
    border-color: #f6f0e9;
}

body.about-page .cta-banner .btn--outline-white {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.34);
    background-color: rgba(255, 255, 255, 0.06);
}

body.about-page .cta-banner .btn--outline-white:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 1024px) {
    .about-hero-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .about-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    body.about-page .about-story__content {
        padding: 24px;
        border-radius: 20px;
    }

    body.about-page .about-values,
    body.about-page .about-team,
    body.about-page .about-certifications {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    body.about-page .about-story__grid {
        display: block;
    }

    body.about-page .about-story__content {
        overflow: hidden;
    }

    body.about-page .about-story__image {
        display: none;
    }

    body.about-page .about-story__mobile-photo {
        display: block;
        float: right;
        width: clamp(126px, 38vw, 174px);
        aspect-ratio: 3 / 4;
        margin: 4px 0 14px 16px;
        border-radius: 22px;
        border: 1px solid rgba(197, 110, 45, 0.18);
        background:
            linear-gradient(180deg, rgba(20, 28, 39, 0.04), rgba(20, 28, 39, 0.16)),
            url('../images/sediul-moldacoperis-web.jpg') center / cover no-repeat;
        box-shadow: 0 18px 34px rgba(17, 24, 39, 0.16);
        shape-outside: inset(0 round 22px);
    }

    body.about-page .about-story__text {
        font-size: 0.95rem;
        line-height: 1.72;
        margin-bottom: 16px;
    }

    body.about-page .about-story__highlights {
        clear: both;
        margin-top: 24px;
    }
}

/* ============================================
   BLOG PAGE PREMIUM THEME
   ============================================ */
body.blog-page {
    --blog-premium-bg: #f5f1ea;
    --blog-premium-surface: rgba(255, 253, 250, 0.95);
    --blog-premium-surface-strong: rgba(255, 255, 255, 0.98);
    --blog-premium-line: rgba(23, 29, 40, 0.1);
    --blog-premium-ink: #171d28;
    --blog-premium-ink-soft: #556274;
    --blog-premium-accent: #c56e2d;
    --blog-premium-accent-deep: #974a19;
    --page-header-image: url('../images/products/header/blog_header.jpg');
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.08), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(197, 110, 45, 0.05), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, var(--blog-premium-bg) 100%);
    background-attachment: scroll;
    color: var(--blog-premium-ink);
}

body.blog-page .section-header__tag {
    background: rgba(197, 110, 45, 0.12);
    border: 1px solid rgba(197, 110, 45, 0.16);
    color: var(--blog-premium-accent-deep);
}

body.blog-page .section-header__title {
    color: var(--blog-premium-ink);
}

body.blog-page .section-header__desc {
    color: var(--blog-premium-ink-soft);
}

body.blog-page .page-header {
    background-color: #141a24;
}

body.blog-page .page-header::before {
    background: radial-gradient(ellipse, rgba(197, 110, 45, 0.16) 0%, transparent 72%);
}

body.blog-page .page-header__content {
    max-width: 980px;
}

body.blog-page .page-header__title {
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

body.blog-page .page-header__subtitle {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.88);
}

body.blog-page .page-header__breadcrumb {
    margin-top: 0;
    margin-bottom: 18px;
}

body.blog-page .product-hero-highlights {
    margin-top: 28px;
}

body.blog-page .product-hero-highlights__item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(7, 12, 20, 0.18);
}

.blog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

body.blog-page .blog-section {
    padding: 96px 0 80px;
    background: transparent;
}

.blog-curation {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 28px;
    padding: 24px 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 246, 0.92) 100%);
    border: 1px solid var(--blog-premium-line);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.blog-curation__copy strong {
    display: block;
    color: var(--blog-premium-ink);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.blog-curation__copy p {
    margin: 0;
    color: var(--blog-premium-ink-soft);
    line-height: 1.75;
}

.blog-curation__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.blog-curation__chips span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(197, 110, 45, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--blog-premium-ink);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.blog-curation__chips i {
    color: var(--blog-premium-accent);
}

body.blog-page .blog-grid {
    gap: 26px;
}

body.blog-page .blog-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 248, 243, 0.94) 100%);
    border: 1px solid var(--blog-premium-line);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

body.blog-page .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.12);
}

body.blog-page .blog-card__image {
    position: relative;
    isolation: isolate;
}

body.blog-page .blog-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(17, 24, 39, 0.16) 100%);
    pointer-events: none;
}

body.blog-page .blog-card__placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.46);
}

body.blog-page .blog-card__content {
    padding: 26px 24px 24px;
}

body.blog-page .blog-card__meta {
    gap: 10px;
    margin-bottom: 16px;
}

body.blog-page .blog-card__category {
    border: 1px solid currentColor;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 5px 11px;
}

body.blog-page .blog-card__date {
    color: #6a7281;
}

body.blog-page .blog-card__title {
    color: var(--blog-premium-ink);
    font-size: 1.18rem;
    line-height: 1.42;
    margin-bottom: 12px;
}

body.blog-page .blog-card__excerpt {
    color: var(--blog-premium-ink-soft);
    font-size: 0.94rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

body.blog-page .blog-card__link {
    color: var(--blog-premium-accent-deep);
    font-weight: 700;
}

body.blog-page .blog-card__title a:hover,
body.blog-page .blog-card__link:hover {
    color: var(--blog-premium-accent);
}

body.blog-page .newsletter-section {
    padding: 0 0 84px;
    background: transparent;
}

body.blog-page .newsletter {
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(245, 192, 146, 0.22), transparent 28%),
        linear-gradient(160deg, #181f2d 0%, #20283a 58%, #2d1e16 100%);
    box-shadow: 0 24px 56px rgba(13, 18, 28, 0.18);
}

body.blog-page .newsletter__desc {
    color: rgba(255, 255, 255, 0.8);
}

body.blog-page .newsletter__social-link {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.blog-page .newsletter__social-link:hover {
    background: rgba(197, 110, 45, 0.2);
}

body.blog-page .cta-banner {
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.2), transparent 24%),
        linear-gradient(135deg, #111827 0%, #1c2435 52%, #2a1a12 100%);
}

@media (max-width: 992px) {
    .blog-curation {
        grid-template-columns: 1fr;
    }

    .blog-curation__chips {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .blog-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    body.blog-page .blog-section {
        padding: 72px 0 64px;
    }

    .blog-curation {
        padding: 22px 20px;
        border-radius: 20px;
    }

    .blog-curation__chips span {
        width: 100%;
        justify-content: center;
    }

    body.blog-page .newsletter-section {
        padding-bottom: 64px;
    }
}

/* ============================================
   CONTACT PAGE PREMIUM THEME
   ============================================ */
body.contact-page {
    --contact-premium-bg: #f5f1ea;
    --contact-premium-surface: rgba(255, 253, 250, 0.95);
    --contact-premium-surface-strong: rgba(255, 255, 255, 0.98);
    --contact-premium-line: rgba(23, 29, 40, 0.1);
    --contact-premium-ink: #171d28;
    --contact-premium-ink-soft: #566274;
    --contact-premium-accent: #c56e2d;
    --contact-premium-accent-deep: #974a19;
    --page-header-image: url('../images/products/header/contact_header.jpg');
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.08), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(197, 110, 45, 0.05), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, var(--contact-premium-bg) 100%);
    background-attachment: scroll;
    color: var(--contact-premium-ink);
}

body.contact-page .section-header__tag {
    background: rgba(197, 110, 45, 0.12);
    border: 1px solid rgba(197, 110, 45, 0.16);
    color: var(--contact-premium-accent-deep);
}

body.contact-page .section-header__title {
    color: var(--contact-premium-ink);
}

body.contact-page .section-header__desc,
body.contact-page .contact-info__note,
body.contact-page .contact-location-point span {
    color: var(--contact-premium-ink-soft);
}

body.contact-page .page-header {
    background-color: #141a24;
}

body.contact-page .page-header::before {
    background: radial-gradient(ellipse, rgba(197, 110, 45, 0.16) 0%, transparent 72%);
}

body.contact-page .page-header__content {
    max-width: 960px;
}

body.contact-page .page-header__title {
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

body.contact-page .page-header__subtitle {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
}

body.contact-page .page-header__breadcrumb {
    margin-top: 0;
    margin-bottom: 18px;
}

body.contact-page .product-hero-highlights {
    margin-top: 28px;
}

body.contact-page .product-hero-highlights__item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(7, 12, 20, 0.18);
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

body.contact-page .contact-info {
    background: transparent;
    padding: 44px 0 0;
}

body.contact-page .contact-info__grid {
    gap: 24px;
}

body.contact-page .contact-info__card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 245, 0.94));
    border: 1px solid var(--contact-premium-line);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
    padding: 34px 24px 30px;
}

body.contact-page .contact-info__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(17, 24, 39, 0.12);
    border-color: rgba(197, 110, 45, 0.22);
}

body.contact-page .contact-info__icon {
    background: linear-gradient(145deg, #c56e2d, #df9b62);
    box-shadow: 0 14px 28px rgba(151, 74, 25, 0.18);
}

body.contact-page .contact-info__title,
body.contact-page .contact-info__text,
body.contact-page .contact-form__label,
body.contact-page .contact-form__success h4,
body.contact-page .contact-location-point strong {
    color: var(--contact-premium-ink);
}

body.contact-page .contact-info__text a {
    color: var(--contact-premium-ink);
}

body.contact-page .contact-info__text a:hover {
    color: var(--contact-premium-accent-deep);
}

body.contact-page .contact-info__note a:hover {
    color: var(--contact-premium-accent-deep);
}

body.contact-page .contact-section {
    padding: 88px 0 100px;
    background: transparent;
}

body.contact-page .contact-section__grid {
    gap: 28px;
    align-items: stretch;
}

body.contact-page .contact-section__form-wrap,
body.contact-page .contact-section__map-wrap {
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 243, 0.94));
    border: 1px solid var(--contact-premium-line);
    box-shadow: 0 20px 48px rgba(17, 24, 39, 0.08);
}

.contact-panel-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -6px 0 22px;
}

.contact-panel-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(197, 110, 45, 0.09);
    border: 1px solid rgba(197, 110, 45, 0.14);
    color: var(--contact-premium-ink);
    font-size: 0.86rem;
    font-weight: 600;
}

.contact-panel-points i {
    color: var(--contact-premium-accent);
}

body.contact-page .contact-form__input {
    background: #fcfaf7;
    border: 1px solid #e8ddd1;
    border-radius: 16px;
    color: var(--contact-premium-ink);
    padding: 15px 18px;
}

body.contact-page .contact-form__input:focus {
    border-color: rgba(197, 110, 45, 0.56);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(197, 110, 45, 0.08);
}

body.contact-page .contact-form__label i {
    color: var(--contact-premium-accent);
}

body.contact-page .contact-form__submit {
    margin-top: 14px;
}

body.contact-page .contact-form__success {
    background: rgba(39, 174, 96, 0.06);
    border: 1px solid rgba(39, 174, 96, 0.16);
    border-radius: 20px;
    margin-top: 20px;
}

body.contact-page .contact-section__map {
    border-radius: 24px;
    border: 1px solid var(--contact-premium-line);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.contact-location-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.contact-location-point {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(23, 29, 40, 0.08);
}

body.contact-page .cta-banner {
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.2), transparent 24%),
        linear-gradient(135deg, #111827 0%, #1c2435 52%, #2a1a12 100%);
}

@media (max-width: 1024px) {
    .contact-location-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    body.contact-page .contact-info {
        padding-top: 28px;
    }

    body.contact-page .contact-section {
        padding: 64px 0;
    }

    body.contact-page .contact-section__form-wrap,
    body.contact-page .contact-section__map-wrap {
        padding: 22px;
        border-radius: 22px;
    }

    .contact-panel-points span {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget {
    position: fixed;
    right: 24px;
    bottom: 88px;
    z-index: 1600;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 66px;
    height: 66px;
    pointer-events: none;
}

.chat-widget__panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 14px);
    width: min(380px, calc(100vw - 28px));
    height: min(640px, calc(100vh - 120px));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 241, 0.96));
    border: 1px solid rgba(23, 29, 40, 0.1);
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(17, 24, 39, 0.18);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-origin: bottom right;
    transform: translateY(16px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.chat-widget.is-open .chat-widget__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.chat-widget__panel * {
    pointer-events: none;
}

.chat-widget.is-open .chat-widget__panel * {
    pointer-events: auto;
}

.chat-widget__toggle {
    pointer-events: auto;
}

.chat-widget__header {
    flex-shrink: 0;
    padding: 10px 12px;
    color: #fffaf5;
    background:
        radial-gradient(circle at top right, rgba(245, 192, 146, 0.26), transparent 28%),
        linear-gradient(140deg, #172031 0%, #1f283c 56%, #3a2417 100%);
}

.chat-widget__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.chat-widget__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.chat-widget__brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: #fffaf5;
    color: #fffaf5;
    overflow: hidden;
}

.chat-widget__brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.chat-widget__title {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.25;
    color: #fffaf5;
    font-weight: 700;
}

.chat-widget__close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fffaf5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
}

.chat-widget__close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

.chat-widget__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.chat-widget__messages {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background:
        radial-gradient(circle at top left, rgba(197, 110, 45, 0.06), transparent 22%),
        linear-gradient(180deg, #fcfaf7 0%, #f6f2eb 100%);
}

.chat-widget__message {
    max-width: 86%;
    padding: 12px 14px;
    border-radius: 18px;
    line-height: 1.65;
    font-size: 0.92rem;
    white-space: pre-line;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.chat-widget__message--bot {
    position: relative;
    margin-left: 34px;
    padding-left: 14px;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(23, 29, 40, 0.08);
    color: #1b2230;
    border-top-left-radius: 8px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.chat-widget__message--bot::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 10px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fffaf5 url('/images/logo-light.png') center/78% no-repeat;
    border: 1px solid rgba(197, 110, 45, 0.22);
    box-shadow: 0 6px 14px rgba(151, 74, 25, 0.12);
}

.chat-widget__message--typing::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1.05em;
    margin-left: 4px;
    vertical-align: -0.18em;
    background: currentColor;
    animation: chatTypingCursor 0.8s steps(1) infinite;
}

.chat-widget__message--user {
    align-self: flex-end;
    background: linear-gradient(145deg, #c56e2d, #e0a56e);
    color: #fffaf5;
    border-top-right-radius: 8px;
    box-shadow: 0 12px 26px rgba(151, 74, 25, 0.18);
}

@keyframes chatTypingCursor {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.chat-widget__message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.chat-widget__lead-form {
    margin-top: 12px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(249, 244, 237, 0.98), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(197, 110, 45, 0.14);
    display: grid;
    gap: 10px;
}

.chat-widget__lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.chat-widget__lead-field {
    display: grid;
    gap: 6px;
}

.chat-widget__lead-field--full {
    grid-column: 1 / -1;
}

.chat-widget__lead-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: #3e4758;
}

.chat-widget__lead-input {
    width: 100%;
    border: 1px solid #e6ddd3;
    background: #ffffff;
    color: #171d28;
    border-radius: 14px;
    padding: 11px 13px;
    font: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.chat-widget__lead-input:focus {
    border-color: rgba(197, 110, 45, 0.52);
    box-shadow: 0 0 0 4px rgba(197, 110, 45, 0.08);
}

.chat-widget__lead-submit {
    width: 100%;
    justify-content: center;
    min-height: 46px;
}

.chat-widget__lead-status {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #6a7281;
    min-height: 18px;
}

.chat-widget__lead-status.is-error {
    color: #b9382f;
}

.chat-widget__lead-status.is-success {
    color: #217a3f;
}

.chat-widget__chip {
    border: 1px solid rgba(197, 110, 45, 0.16);
    background: rgba(255, 255, 255, 0.96);
    color: #974a19;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.chat-widget__chip:hover {
    background: #fff5ea;
    border-color: rgba(197, 110, 45, 0.28);
    transform: translateY(-1px);
}

.chat-widget__composer {
    flex-shrink: 0;
    padding: 12px 12px 14px;
    border-top: 1px solid rgba(23, 29, 40, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.chat-widget__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    max-height: 84px;
    overflow-y: auto;
    padding-right: 2px;
}

.chat-widget__quick .chat-widget__chip {
    background: rgba(197, 110, 45, 0.08);
    font-size: 0.76rem;
    padding: 7px 11px;
}

.chat-widget__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.chat-widget__input {
    width: 100%;
    min-width: 0;
    border: 1px solid #e6ddd3;
    background: #fcfaf7;
    color: #171d28;
    border-radius: 16px;
    padding: 12px 14px;
    font: inherit;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.chat-widget__input:focus {
    border-color: rgba(197, 110, 45, 0.52);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(197, 110, 45, 0.08);
}

.chat-widget__send {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #c56e2d, #df9b62);
    color: #fffaf5;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(151, 74, 25, 0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.chat-widget__send:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(151, 74, 25, 0.22);
}

.chat-widget__note {
    margin: 8px 2px 0;
    color: #6a7281;
    font-size: 0.72rem;
    line-height: 1.4;
}

.chat-widget__teaser {
    position: absolute;
    right: 0;
    bottom: calc(100% + 14px);
    width: min(326px, calc(100vw - 28px));
    padding: 17px 18px 16px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(245, 192, 146, 0.28), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 242, 0.98));
    border: 1px solid rgba(23, 29, 40, 0.1);
    box-shadow: 0 22px 48px rgba(17, 24, 39, 0.18);
    color: #1b2230;
    transform: translateY(12px) scale(0.97);
    transform-origin: bottom right;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.chat-widget__teaser::after {
    content: '';
    position: absolute;
    right: 24px;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: rgba(252, 248, 242, 0.98);
    border-right: 1px solid rgba(23, 29, 40, 0.1);
    border-bottom: 1px solid rgba(23, 29, 40, 0.1);
    transform: rotate(45deg);
}

.chat-widget.has-teaser:not(.is-open) .chat-widget__teaser {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.chat-widget__teaser p {
    margin: 0 26px 13px 0;
    color: #1b2230;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
}

.chat-widget__teaser-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: rgba(23, 29, 40, 0.08);
    color: #3e4758;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
}

.chat-widget__teaser-close:hover {
    background: rgba(23, 29, 40, 0.13);
    transform: rotate(90deg);
}

.chat-widget__teaser-cta {
    position: relative;
    z-index: 1;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    background: linear-gradient(145deg, #c56e2d, #df9b62);
    color: #fffaf5;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(151, 74, 25, 0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.chat-widget__teaser-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(151, 74, 25, 0.24);
}

.chat-widget__toggle {
    width: 66px;
    height: 66px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(245, 192, 146, 0.3), transparent 32%),
        linear-gradient(145deg, #182131, #1f293d 58%, #3a2416 100%);
    color: #fffaf5;
    box-shadow: 0 20px 44px rgba(17, 24, 39, 0.22);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.chat-widget__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(17, 24, 39, 0.28);
}

.chat-widget__toggle-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(145deg, #c56e2d, #df9b62);
    color: #fffaf5;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid #fffaf5;
}

.chat-widget__toggle-label {
    position: absolute;
    right: 78px;
    bottom: 10px;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(23, 29, 40, 0.92);
    color: #fffaf5;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.chat-widget__toggle:hover .chat-widget__toggle-label,
.chat-widget__toggle:focus-visible .chat-widget__toggle-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-messengers {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    z-index: 1500;
    pointer-events: none;
}

.floating-messengers__link {
    position: fixed;
    right: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fffaf5;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.18);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.floating-messengers__link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 40px rgba(17, 24, 39, 0.24);
    filter: saturate(1.05);
}

.floating-messengers__link i {
    font-size: 1.45rem;
    pointer-events: none;
}

.floating-messengers__link--telegram {
    bottom: 232px;
    background: linear-gradient(145deg, #33a9e4, #1f78c8);
}

.floating-messengers__link--whatsapp {
    bottom: 162px;
    background: linear-gradient(145deg, #35c75a, #179c44);
}

.floating-messengers__link--viber {
    bottom: 92px;
    background: linear-gradient(145deg, #8663c7, #6f42b5);
}

@media (max-width: 768px) {
    .floating-messengers__link {
        right: 14px;
        width: 54px;
        height: 54px;
    }

    .floating-messengers__link--telegram {
        bottom: calc(max(14px, env(safe-area-inset-bottom)) + 192px);
    }

    .floating-messengers__link--whatsapp {
        bottom: calc(max(14px, env(safe-area-inset-bottom)) + 128px);
    }

    .floating-messengers__link--viber {
        bottom: calc(max(14px, env(safe-area-inset-bottom)) + 64px);
    }

    .chat-widget {
        right: 14px;
        bottom: calc(max(14px, env(safe-area-inset-bottom)) + 72px);
        width: 62px;
        height: 62px;
    }

    .chat-widget__panel {
        width: min(420px, calc(100vw - 28px));
        height: min(76vh, 620px);
        height: min(76svh, 620px);
        border-radius: 24px;
    }

    .chat-widget__teaser {
        width: min(306px, calc(100vw - 28px));
        padding: 15px 16px 14px;
        border-radius: 20px;
    }

    .chat-widget__teaser p {
        margin-right: 24px;
        font-size: 0.84rem;
    }

    body.chat-open .chat-widget {
        bottom: max(12px, env(safe-area-inset-bottom));
    }

    body.chat-open .chat-widget .chat-widget__panel {
        height: min(560px, calc(100vh - 108px - env(safe-area-inset-top)));
        height: min(560px, calc(100svh - 108px - env(safe-area-inset-top)));
    }

    .chat-widget__header {
        padding: 8px 10px;
    }

    .chat-widget__messages {
        padding: 14px 14px 16px;
    }

    .chat-widget__composer {
        padding: 10px 10px 12px;
    }

    .chat-widget__quick {
        max-height: 74px;
        gap: 7px;
    }

    .chat-widget__toggle {
        width: 62px;
        height: 62px;
        margin-left: auto;
    }

    .chat-widget__toggle-label {
        display: none;
    }

    .chat-widget__message {
        max-width: 92%;
    }

    .chat-widget__lead-grid {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
        z-index: 1500;
    }

    body.menu-open .chat-widget,
    body.menu-open .floating-messengers,
    body.menu-open .back-to-top {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body.chat-open .back-to-top {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(20px);
    }
}

.info-hub-page .info-hub-hero {
    padding: 156px 0 86px;
    background:
        radial-gradient(circle at 82% 18%, rgba(232, 97, 26, 0.22), transparent 32%),
        linear-gradient(135deg, rgba(26, 26, 46, 0.96) 0%, rgba(35, 37, 58, 0.93) 48%, rgba(84, 50, 28, 0.9) 100%);
}

.info-hub-page .page-header__title {
    max-width: 840px;
}

.info-hub-page .page-header__subtitle {
    max-width: 780px;
}

.info-hub-overview,
.info-hub-products,
.info-hub-process,
.info-hub-faq {
    position: relative;
}

.info-hub-overview {
    padding: 92px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(232, 97, 26, 0.1), transparent 34%),
        linear-gradient(180deg, #fffdfb 0%, #f7f8fc 100%);
}

.info-hub-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.info-hub-card,
.info-hub-panel,
.info-hub-product-card,
.info-hub-step,
.info-hub-faq__item {
    border-radius: 24px;
}

.info-hub-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(26, 26, 46, 0.08);
    box-shadow: 0 22px 60px rgba(26, 26, 46, 0.1);
    padding: 36px;
}

.info-hub-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--color-orange), #f0b46c);
}

.info-hub-eyebrow,
.info-hub-panel__label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.info-hub-eyebrow {
    color: var(--color-orange-dark);
    background: rgba(232, 97, 26, 0.1);
}

.info-hub-card h2,
.info-hub-process__heading h2 {
    color: var(--color-dark);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.16;
    margin-bottom: 18px;
}

.info-hub-card p,
.info-hub-process__heading p {
    color: var(--color-gray-600);
    line-height: 1.85;
}

.info-hub-lead {
    font-size: 1.05rem;
    color: var(--color-gray-800) !important;
}

.info-hub-highlights {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.info-hub-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 16px;
    border: 1px solid rgba(26, 26, 46, 0.08);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #fafbfe);
}

.info-hub-highlight i {
    color: var(--color-orange);
    margin-top: 3px;
}

.info-hub-highlight span {
    color: var(--color-gray-800);
    line-height: 1.55;
}

.info-hub-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    min-height: 100%;
    padding: 34px;
    color: var(--color-white);
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.14), transparent 30%),
        linear-gradient(145deg, #1a1a2e 0%, #242a3e 58%, #4a2b1a 100%);
    box-shadow: 0 24px 64px rgba(26, 26, 46, 0.18);
}

.info-hub-panel__label {
    color: #fff8ef;
    background: rgba(255, 255, 255, 0.12);
}

.info-hub-panel h2 {
    color: var(--color-white);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.18;
}

.info-hub-checklist {
    display: grid;
    gap: 16px;
}

.info-hub-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.info-hub-checklist i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #1a1a2e;
    background: #f7c58c;
    font-size: 0.78rem;
}

.info-hub-products {
    padding: 92px 0;
    background: #ffffff;
}

.info-hub-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-hub-product-card {
    position: relative;
    min-height: 100%;
    padding: 26px 24px 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 253, 0.98));
    border: 1px solid rgba(26, 26, 46, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-hub-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 97, 26, 0.26);
    box-shadow: var(--shadow-lg);
}

.info-hub-product-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    color: var(--color-orange);
    background: rgba(232, 97, 26, 0.1);
}

.info-hub-product-card h3 {
    color: var(--color-dark);
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.info-hub-product-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 18px;
}

.info-hub-product-card span {
    display: inline-flex;
    color: var(--color-dark);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
}

.info-hub-process {
    padding: 94px 0;
    background:
        linear-gradient(180deg, #f7f8fc 0%, #fffaf5 100%);
}

.info-hub-process__heading {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.info-hub-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-hub-step {
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 46, 0.08);
    box-shadow: var(--shadow-sm);
}

.info-hub-step span {
    display: inline-flex;
    margin-bottom: 18px;
    color: rgba(232, 97, 26, 0.28);
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1;
}

.info-hub-step h3 {
    color: var(--color-dark);
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.info-hub-step p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

.info-hub-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 850px;
    margin: 26px auto 0;
    padding: 18px 20px;
    border: 1px solid rgba(232, 97, 26, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.info-hub-note i {
    color: var(--color-orange);
    margin-top: 4px;
}

.info-hub-note p {
    color: var(--color-gray-700, var(--color-gray-800));
    line-height: 1.65;
}

.info-hub-faq {
    padding: 92px 0;
    background: #ffffff;
}

.info-hub-faq__grid {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.info-hub-faq__item {
    padding: 0;
    background: #fbfbfd;
    border: 1px solid rgba(26, 26, 46, 0.08);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.info-hub-faq__item summary {
    cursor: pointer;
    padding: 20px 24px;
    color: var(--color-dark);
    font-weight: 800;
    list-style: none;
}

.info-hub-faq__item summary::-webkit-details-marker {
    display: none;
}

.info-hub-faq__item summary::after {
    content: '+';
    float: right;
    color: var(--color-orange);
    font-size: 1.3rem;
    line-height: 1;
}

.info-hub-faq__item[open] summary::after {
    content: '-';
}

.info-hub-faq__item p {
    padding: 0 24px 22px;
    color: var(--color-gray-600);
    line-height: 1.75;
}

.info-hub-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

@media (max-width: 768px) {
    .info-hub-page .info-hub-hero {
        padding: 122px 0 58px;
    }

    .info-hub-overview,
    .info-hub-products,
    .info-hub-process,
    .info-hub-faq {
        padding: 64px 0;
    }

    .info-hub-layout,
    .info-hub-product-grid,
    .info-hub-steps {
        grid-template-columns: 1fr;
    }

    .info-hub-card,
    .info-hub-panel,
    .info-hub-step {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .info-hub-product-card {
        padding: 22px 20px;
        border-radius: 20px;
    }

    .info-hub-panel {
        gap: 20px;
    }

    .info-hub-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

@media (max-width: 480px) {
    .info-hub-page .page-header__title {
        font-size: 1.95rem;
    }

    .info-hub-page .page-header__subtitle {
        font-size: 0.98rem;
    }

    .info-hub-card h2,
    .info-hub-process__heading h2 {
        font-size: 1.6rem;
    }

    .info-hub-faq__item summary {
        padding: 18px 18px;
    }

    .info-hub-faq__item p {
        padding: 0 18px 18px;
    }
}
