:root {
--cdnw-red:        #df2b2e; --cdnw-red-dark:   #c01f22; --cdnw-dark:       #212121; --cdnw-body:       #4e4b66; --cdnw-navy:       #101827; --cdnw-bg:         #ffffff; --cdnw-bg-alt:     #f4f4f4; --cdnw-border:     #ebebeb;
--cdnw-card-bg:    #ffffff;
--cdnw-content-max: 1140px;
--cdnw-header-height: 112px; --cdnw-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
} *, *::before, *::after { box-sizing: border-box; }
body {
margin: 0;
font-family: var(--cdnw-font);
font-size: 16px;
line-height: 1.7;
color: var(--cdnw-body);
background: var(--cdnw-bg);
-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--cdnw-font);
color: var(--cdnw-dark);
font-weight: 700;
line-height: 1.25;
margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1.2em; }
a { color: var(--cdnw-red); text-decoration: none; }
a:hover { color: var(--cdnw-red-dark); }
img { max-width: 100%; height: auto; display: block; } .cdnw-container {
width: 100%;
max-width: var(--cdnw-content-max);
margin-inline: auto;
padding-inline: 20px;
}
.cdnw-section { padding: 64px 0; }
.cdnw-section--alt { background: var(--cdnw-bg-alt); } .cdnw-btn {
display: inline-block;
font-weight: 600;
font-size: .95rem;
line-height: 1;
padding: 13px 26px;
border-radius: 4px;
border: 2px solid var(--cdnw-red);
background: var(--cdnw-red);
color: #fff;
cursor: pointer;
transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cdnw-btn:hover { background: var(--cdnw-red-dark); border-color: var(--cdnw-red-dark); color: #fff; }
.cdnw-btn--outline { background: transparent; color: var(--cdnw-red); }
.cdnw-btn--outline:hover { background: var(--cdnw-red); color: #fff; }
.cdnw-btn-group { display: flex; flex-wrap: wrap; gap: 14px; } .cdnw-eyebrow { color: var(--cdnw-red); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .85rem; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }.cdnw-header { position: relative; z-index: 100; } .cdnw-topbar { background: var(--cdnw-red); color: #fff; font-size: .85rem; }
.cdnw-topbar__inner {
display: flex; align-items: center; justify-content: flex-end;
gap: 24px; min-height: 38px; flex-wrap: wrap;
}
.cdnw-topbar__item { color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.cdnw-topbar__phone { font-weight: 600; }
.cdnw-topbar__phone:hover { color: #fff; opacity: .85; }
.cdnw-topbar .cdnw-ico { font-size: .8em; } .cdnw-navbar { background: #fff; border-bottom: 1px solid var(--cdnw-border); }
.cdnw-navbar__inner { display: flex; align-items: center; gap: 24px; min-height: 74px; }
.cdnw-brand { flex: 0 0 auto; }
.cdnw-brand img, .cdnw-brand .custom-logo { max-height: 56px; width: auto; }
.cdnw-brand__text { font-weight: 700; font-size: 1.3rem; color: var(--cdnw-dark); } .cdnw-nav { margin-left: auto; }
.cdnw-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.cdnw-menu li { position: relative; }
.cdnw-menu a {
display: flex; align-items: center; gap: 5px;
padding: 12px 14px; font-size: .92rem; font-weight: 500;
color: var(--cdnw-dark); white-space: nowrap;
}
.cdnw-menu > li > a:hover,
.cdnw-menu > li.current-menu-item > a,
.cdnw-menu > li.current-menu-parent > a,
.cdnw-menu > li.current-menu-ancestor > a { color: var(--cdnw-red); }
.cdnw-caret {
width: 0; height: 0; margin-left: 2px;
border-left: 4px solid transparent; border-right: 4px solid transparent;
border-top: 5px solid currentColor; opacity: .7;
} .cdnw-submenu {
list-style: none; margin: 0; padding: 8px 0;
position: absolute; top: 100%; left: 0; min-width: 240px;
background: #fff; border: 1px solid var(--cdnw-border);
box-shadow: 0 12px 30px rgba(0,0,0,.1);
opacity: 0; visibility: hidden; transform: translateY(8px);
transition: opacity .18s ease, transform .18s ease, visibility .18s;
z-index: 50;
}
.cdnw-menu li.cdnw-has-children:hover > .cdnw-submenu,
.cdnw-menu li.cdnw-has-children:focus-within > .cdnw-submenu {
opacity: 1; visibility: visible; transform: translateY(0);
}
.cdnw-submenu a { padding: 9px 18px; font-size: .9rem; font-weight: 500; }
.cdnw-submenu a:hover { color: var(--cdnw-red); background: var(--cdnw-bg-alt); } .cdnw-burger {
display: none; margin-left: auto; flex-direction: column; gap: 5px;
width: 42px; height: 42px; align-items: center; justify-content: center;
background: transparent; border: 0; cursor: pointer;
}
.cdnw-burger span { display: block; width: 24px; height: 2px; background: var(--cdnw-dark); transition: transform .25s, opacity .2s; }
.cdnw-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cdnw-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.cdnw-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .cdnw-drawer {
position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 340px);
background: #fff; z-index: 1000; padding: 80px 0 32px;
transform: translateX(100%); transition: transform .3s ease;
overflow-y: auto; box-shadow: -8px 0 30px rgba(0,0,0,.15);
}
.cdnw-drawer.is-open { transform: translateX(0); }
.cdnw-drawer__menu { list-style: none; margin: 0; padding: 0; }
.cdnw-drawer__menu a { display: block; padding: 13px 24px; color: var(--cdnw-dark); font-weight: 500; border-bottom: 1px solid var(--cdnw-border); }
.cdnw-drawer__menu a:hover { color: var(--cdnw-red); }
.cdnw-drawer__menu .cdnw-submenu {
position: static; opacity: 1; visibility: visible; transform: none;
border: 0; box-shadow: none; padding: 0; min-width: 0; background: var(--cdnw-bg-alt);
}
.cdnw-drawer__menu .cdnw-submenu a { padding-left: 40px; font-size: .9rem; }
.cdnw-drawer__menu .cdnw-caret { display: none; }
.cdnw-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 999; }
@media (max-width: 992px) {
.cdnw-nav { display: none; }
.cdnw-burger { display: flex; }
}.cdnw-prefooter { background: var(--cdnw-red); color: #fff; }
.cdnw-prefooter__inner {
display: flex; align-items: center; justify-content: space-between;
gap: 24px; flex-wrap: wrap; padding: 38px 20px;
}
.cdnw-prefooter h2 { color: #fff; margin: 0 0 6px; }
.cdnw-prefooter p { margin: 0; opacity: .92; }
.cdnw-prefooter__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cdnw-btn--white { border-color: #fff; color: #fff; }
.cdnw-btn--white:hover { background: #fff; color: var(--cdnw-red); border-color: #fff; } .cdnw-footer { background: var(--cdnw-navy); color: #c7ccd6; font-size: .92rem; }
.cdnw-footer__grid {
display: grid;
grid-template-columns: 0.9fr 1.2fr 1fr 1fr;
gap: 40px; padding: 56px 20px 40px;
}
.cdnw-footer__heading { color: #fff; font-size: 1.1rem; margin: 0 0 18px; }
.cdnw-footer__col p { margin: 0; line-height: 1.7; }
.cdnw-footer__menu, .cdnw-footer__contact { list-style: none; margin: 0; padding: 0; }
.cdnw-footer__menu li, .cdnw-footer__contact li { margin: 0 0 10px; }
.cdnw-footer a { color: #c7ccd6; }
.cdnw-footer a:hover { color: #fff; }
.cdnw-footer__contact a { display: inline-flex; align-items: center; gap: 9px; }
.cdnw-footer .cdnw-ico { color: var(--cdnw-red); }
.cdnw-footer__social { display: flex; gap: 10px; margin-top: 16px; }
.cdnw-social {
display: inline-flex; align-items: center; justify-content: center;
width: 34px; height: 34px; border-radius: 50%;
background: rgba(255,255,255,.08); color: #fff; font-weight: 700; font-size: .9rem;
}
.cdnw-social:hover { background: var(--cdnw-red); color: #fff; }
.cdnw-footer__col--brand { display: flex; align-items: center; justify-content: flex-start; }
.cdnw-footer__logo { max-height: 60px; width: auto; }
.cdnw-footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.cdnw-footer__bar p { margin: 0; padding: 18px 20px; text-align: center; font-size: .85rem; color: #9aa1ad; }
.cdnw-footer__bar a { color: #c7ccd6; }
@media (max-width: 860px) {
.cdnw-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
.cdnw-footer__col--brand { justify-content: flex-start; align-items: center; }
.cdnw-prefooter__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
.cdnw-footer__grid { grid-template-columns: 1fr; }
}