@font-face {
    font-family: DejaVu;
    src:
        url("/assets/fonts/DejaVuSans-subset.woff2") format("woff2"),
        url("/assets/fonts/DejaVuSans.ttf") format("truetype");
    font-display: swap;
    font-weight: 400;
}
@font-face {
    font-family: DejaVu;
    src:
        url("/assets/fonts/DejaVuSans-Bold-subset.woff2") format("woff2"),
        url("/assets/fonts/DejaVuSans-Bold.ttf") format("truetype");
    font-display: swap;
    font-weight: 700;
}
:root {
    --ink: #172630;
    --ink-2: #263945;
    --muted: #617079;
    --cream: #fbf7ef;
    --white: #fff;
    --gold: #f5b942;
    --gold-dark: #c88918;
    --coral: #d66b48;
    --plum: #8b4c7a;
    --line: #dfe3df;
    --tint: #f5efe6;
    --radius: 22px;
    --shadow: 0 20px 55px rgba(23, 38, 48, 0.12);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height, 0px) + 16px);
}
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font:
        400 16px/1.65 DejaVu,
        Arial,
        sans-serif;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
}
button,
input,
textarea,
select {
    font: inherit;
}
.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}
.skip-link {
    position: fixed;
    left: 12px;
    top: -80px;
    z-index: 999;
    padding: 10px 14px;
    background: var(--ink);
    color: #fff;
}
.skip-link:focus {
    top: 12px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(23, 38, 48, 0.08);
    backdrop-filter: blur(12px);
}
.topbar {
    color: #e7edef;
    background: var(--ink);
    font-size: 0.78rem;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 7px;
}
.topbar a {
    color: #fff;
    text-decoration: none;
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 30px;
}
.brand {
    display: block;
    width: min(360px, 48vw);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}
.main-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}
.main-nav a:hover {
    color: var(--coral);
}
.main-nav .nav-cta {
    padding: 12px 18px;
    color: #fff;
    background: var(--coral);
    border-radius: 999px;
}
.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: var(--ink);
}
.hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0 82px;
    background: linear-gradient(135deg, var(--cream), #fff 60%);
}
.hero:after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -210px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(245, 185, 66, 0.16);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 70px;
}
.eyebrow {
    margin: 0 0 15px;
    color: var(--coral);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}
.eyebrow--light {
    color: #f0a37f;
}
h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.14;
}
h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(2.45rem, 5vw, 4.8rem);
    letter-spacing: -0.045em;
}
h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    letter-spacing: -0.035em;
}
h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.hero-lead {
    max-width: 690px;
    color: var(--muted);
    font-size: 1.12rem;
}
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.button {
    display: inline-flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.button--primary {
    color: #172630;
    background: var(--gold);
}
.button--primary:hover {
    background: #ffc956;
}
.button--ghost {
    border-color: rgba(23, 38, 48, 0.25);
    background: #fff;
}
.button--full {
    width: 100%;
}
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 700;
}
.hero-points li:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--coral);
}
.hero-visual {
    position: relative;
    min-height: 430px;
}
.sun-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 132px;
    height: 132px;
    transform: translate(-50%, -58%);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffd76f, var(--gold));
    box-shadow: 0 0 70px rgba(245, 185, 66, 0.45);
}
.light-arc {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 24px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
}
.light-arc--one {
    width: 290px;
    height: 290px;
    border-top-color: var(--coral);
    border-right-color: var(--coral);
}
.light-arc--two {
    width: 365px;
    height: 365px;
    border-bottom-color: var(--plum);
    border-left-color: var(--plum);
}
.hero-card {
    position: absolute;
    right: 0;
    bottom: 18px;
    width: 290px;
    padding: 22px;
    color: #fff;
    background: rgba(23, 38, 48, 0.94);
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.hero-card span {
    display: block;
    margin-bottom: 9px;
    color: #f4c878;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.hero-card strong {
    font-size: 1.12rem;
    line-height: 1.5;
}
.trust-strip {
    color: #fff;
    background: var(--ink);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.trust-grid div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-grid div:last-child {
    border: 0;
}
.trust-grid strong {
    color: var(--gold);
    font-size: 1.3rem;
}
.trust-grid span {
    font-size: 0.86rem;
}
.section {
    padding: 94px 0;
}
.section--dark {
    color: #fff;
    background: var(--ink);
}
.section--dark p {
    color: #c7d1d6;
}
.section--tint {
    background: var(--tint);
}
.section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}
.section-heading > p:last-child {
    color: var(--muted);
}
.card-grid {
    display: grid;
    gap: 20px;
}
.card-grid--four {
    grid-template-columns: repeat(4, 1fr);
}
.product-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(23, 38, 48, 0.055);
}
.product-card p {
    margin-bottom: 0;
    color: var(--muted);
}
.product-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    place-items: center;
    color: #fff;
    background: var(--coral);
    border-radius: 18px;
    font-size: 2rem;
    font-weight: 700;
}
.product-icon--vertical {
    background: var(--plum);
}
.product-icon--dual {
    color: var(--ink);
    background: var(--gold);
}
.product-icon--parts {
    background: var(--ink);
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}
.text-link {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
}
.check-panel {
    padding: 33px;
    background: var(--ink-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}
.check-list {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.check-list li {
    padding-left: 27px;
    position: relative;
    color: #d8e0e3;
}
.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.audience-grid article {
    padding: 38px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #fff, var(--cream));
    border: 1px solid var(--line);
}
.audience-grid span {
    display: inline-block;
    margin-bottom: 20px;
    padding: 7px 12px;
    color: #fff;
    background: var(--plum);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.audience-grid p {
    color: var(--muted);
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.steps li {
    padding: 26px;
    background: #fff;
    border-radius: var(--radius);
}
.steps li > span {
    display: grid;
    width: 39px;
    height: 39px;
    margin-bottom: 22px;
    place-items: center;
    color: #fff;
    background: var(--coral);
    border-radius: 50%;
    font-weight: 700;
}
.steps p {
    margin: 0;
    color: var(--muted);
}
.safety-section {
    padding-top: 0;
}
.safety-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    padding: 38px;
    background: #fff8e7;
    border: 1px solid #eed28c;
    border-radius: var(--radius);
}
.safety-mark {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
}
.safety-box p:last-child {
    margin-bottom: 0;
    color: #615947;
}
.faq-list {
    max-width: 900px;
}
.faq-list details {
    border-bottom: 1px solid var(--line);
}
.faq-list summary {
    padding: 21px 44px 21px 0;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
}
.faq-list summary:after {
    content: "+";
    position: absolute;
    right: 6px;
    font-size: 1.4rem;
}
.faq-list details[open] summary:after {
    content: "–";
}
.faq-list details p {
    padding: 0 50px 22px 0;
    color: var(--muted);
}
.contact-section {
    color: #fff;
    background: linear-gradient(135deg, var(--ink), #2d3545);
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}
.contact-section p {
    color: #d1d9dd;
}
.contact-direct {
    display: grid;
    gap: 5px;
    margin-top: 28px;
}
.contact-direct a {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}
.contact-direct span {
    color: #f0a37f;
    font-size: 0.83rem;
}
.form-card {
    padding: 31px;
    color: var(--ink);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-card label {
    display: grid;
    gap: 7px;
    margin-bottom: 15px;
    font-size: 0.82rem;
    font-weight: 700;
}
.form-card input,
.form-card textarea,
.form-card select {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #cfd7da;
    border-radius: 10px;
    background: #fff;
}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
    outline: 3px solid rgba(245, 185, 66, 0.3);
    border-color: var(--gold-dark);
}
.checkbox {
    grid-template-columns: auto 1fr !important;
    align-items: start;
    font-weight: 400 !important;
}
.checkbox input {
    width: auto;
    margin-top: 5px;
}
.form-message {
    padding: 13px 15px;
    margin-bottom: 18px;
    border-radius: 10px;
}
.form-message--success {
    color: #255f38;
    background: #e8f7ed;
}
.form-message--error {
    color: #822f2f;
    background: #fff0f0;
}
.form-message ul {
    margin: 0;
    padding-left: 20px;
}
.hp-field {
    position: absolute !important;
    left: -9999px !important;
}
.page-hero {
    padding: 68px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--ink), #343449);
}
.page-hero p {
    max-width: 700px;
    color: #d5dde0;
}
.legal-section {
    background: var(--cream);
}
.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 30px;
    align-items: start;
}
.legal-card {
    padding: 42px;
    background: #fff;
    border-radius: var(--radius);
}
.legal-card h2 {
    margin: 34px 0 10px;
    font-size: 1.3rem;
}
.legal-card h2:first-child {
    margin-top: 0;
}
.legal-card p {
    color: var(--muted);
}
.legal-card a {
    color: var(--coral);
}
.legal-note {
    padding: 15px;
    background: #fff3ce;
    border-left: 4px solid var(--gold);
}
.legal-aside {
    position: sticky;
    top: 125px;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius);
}
.error-section {
    min-height: 52vh;
    display: grid;
    place-items: center;
    text-align: center;
}
.error-content {
    max-width: 720px;
}
.error-code {
    margin: 0 0 10px;
    color: var(--coral);
    font-size: clamp(5rem, 16vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
}
.error-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.quick-contact {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 90;
    display: grid;
    justify-items: end;
    gap: 8px;
}
.quick-contact__hours {
    padding: 6px 10px;
    color: #fff;
    background: rgba(23, 38, 48, 0.94);
    border-radius: 8px;
    font-size: 0.69rem;
}
.quick-contact__button {
    display: flex;
    width: 44px;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    padding: 8px 11px;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(23, 38, 48, 0.24);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}
.quick-contact__button svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}
.quick-contact__button--phone {
    background: var(--ink);
}
.quick-contact__button--whatsapp {
    background: #238d48;
}
.quick-contact__button--email {
    background: var(--coral);
}
.brands-section {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}
.brands-section:before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(214, 107, 72, 0.16);
    border-radius: 50%;
}
.brands-heading {
    position: relative;
    max-width: 820px;
}
.brand-logo-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}
.brand-logo-card {
    display: grid;
    min-height: 142px;
    place-items: center;
    padding: 30px 34px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(23, 38, 48, 0.09);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(23, 38, 48, 0.07);
}
.brand-logo-card img {
    width: auto;
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}
.brand-logo-card--ergoline {
    background: #050505;
}
.brand-logo-card--collarium {
    background: #516f79;
}
.brand-feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: stretch;
    margin-top: 28px;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.brand-feature__image {
    min-height: 390px;
    margin: 0;
    overflow: hidden;
}
.brand-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-feature__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(34px, 5vw, 64px);
}
.brand-feature__content h3 {
    margin-bottom: 18px;
    font-size: clamp(1.65rem, 2.5vw, 2.45rem);
}
.brand-feature__content p:not(.eyebrow) {
    margin: 0 0 26px;
    color: #d7e1e5;
}
.brand-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
}
.site-footer {
    padding-top: 68px;
    color: #d7e1e5;
    background: #101c23;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 45px;
}
.footer-grid h2 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer-grid a,
.footer-grid span {
    display: block;
    color: #d7e1e5;
    text-decoration: none;
}
.footer-grid address {
    margin-bottom: 12px;
    font-style: normal;
}
.footer-brand > img {
    width: 310px;
    margin: 0 0 -60px;
	transform: translateY(-25px);
}

.footer-brand > p {
    max-width: 430px;
    margin-top: 0;
}

.footer-social { display: flex; flex-flow: row wrap; align-items: center; justify-content: flex-start; gap: 12px; margin-top: 22px; }
.footer-grid .footer-social a { display: inline-flex; flex: 0 0 44px; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; color: var(--white); background-color: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 5px 16px rgba(0,0,0,.14); transition: background-color .2s ease, border-color .2s ease, transform .2s ease; }
.footer-grid .footer-social a:hover, .footer-grid .footer-social a:focus-visible { color: var(--white); background-color: #238d48; border-color: #46ad68; transform: translateY(-2px); }
.footer-brand .footer-social img { display: block; width: 21px; height: 21px; margin: 0; object-fit: contain; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
}
@media (max-width: 980px) {
    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        padding: 20px;
        background: #fff;
        box-shadow: var(--shadow);
    }
    .main-nav.is-open {
        display: grid;
    }
    .menu-toggle {
        display: block;
    }
    .hero-grid,
    .split-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        min-height: 380px;
    }
    .card-grid--four,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1/-1;
    }
    .legal-layout {
        grid-template-columns: 1fr;
    }
    .legal-aside {
        position: static;
    }
    .brand-feature {
        grid-template-columns: 1fr;
    }
    .brand-feature__image {
        min-height: 330px;
    }
}
@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, 1160px);
    }
    .topbar__inner {
        display: grid;
        gap: 2px;
    }
    .nav-wrap {
        min-height: 78px;
    }
    .brand {
        width: 245px;
    }
    .hero {
        padding: 65px 0;
    }
    .hero-visual {
        min-height: 320px;
    }
    .light-arc--one {
        width: 225px;
        height: 225px;
    }
    .light-arc--two {
        width: 285px;
        height: 285px;
    }
    .sun-core {
        width: 100px;
        height: 100px;
    }
    .hero-card {
        width: 245px;
    }
    .trust-grid,
    .card-grid--four,
    .steps,
    .audience-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .section {
        padding: 70px 0;
    }
    .safety-box {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: auto;
    }
    .footer-bottom {
        display: grid;
    }
    .brand-logo-grid {
        grid-template-columns: 1fr;
    }
    .brand-logo-card {
        min-height: 118px;
    }
    .brand-feature__image {
        min-height: 240px;
    }
    .quick-contact {
        right: 10px;
        bottom: 12px;
    }
    .quick-contact__button {
        width: 46px;
        height: 46px;
        padding: 12px;
    }
    .quick-contact__button span {
        display: none;
    }
    .legal-card {
        padding: 24px;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
