/* daramio.com — mezinarodni rozcestnik (template/corepage.php + template/com/*).
   Samostatny stylesheet (NENI v minified.css packu mutaci). Design drzi konvence
   lokalnich webu: Poppins, koralova #ee6c4c, tmavy header s bilym logem,
   zaoblene karty jako nove Kontakty (css/contact-page.css) a /go dialog. */

:root {
    --c-brand: #ee6c4c;
    --c-brand-dark: #d4522f;
    --c-brand-deep: #c7451f;
    --c-brand-soft: #fdf1ec;
    --c-brand-line: #f3d6ca;
    --c-text: #303030;
    --c-muted: #6e6e6e;
    --c-faint: #9a9a9a;
    --c-line: #e7e7e7;
    --c-dark: #141414;
    --c-dark-2: #1f1f1f;
    --c-bg: #fbfaf9;
    --c-ok: #1f7a3f;
    --c-err: #c62828;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-card: 0 14px 40px rgba(0, 0, 0, 0.06);
    --shadow-pop: 0 18px 50px -18px rgba(0, 0, 0, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
img { max-width: 100%; }
a { color: inherit; }

.com-shell { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.com-main { flex: 1 0 auto; }

h1, h2, h3 { line-height: 1.25; font-weight: 600; color: var(--c-text); }

.com-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-brand-deep);
    margin-bottom: 12px;
}

/* ---------------------------------------------------------------- header */
.com-header {
    background: var(--c-dark);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}
.com-header__in {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 66px;
}
.com-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.com-logo img { width: 172px; height: 26px; display: block; }
.com-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.com-nav a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    color: #d8d8d8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
}
.com-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.com-nav a.is-active { color: #fff; background: rgba(255, 255, 255, 0.12); }
.com-nav a.com-nav__cta {
    margin-left: 10px;
    background: var(--c-brand);
    color: #fff;
    font-weight: 600;
}
.com-nav a.com-nav__cta:hover { background: var(--c-brand-dark); }

.com-burger {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.com-burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; display: block; transition: transform 0.2s, opacity 0.2s; }
.com-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.com-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.com-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
    .com-burger { display: flex; }
    .com-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: var(--c-dark-2);
        padding: 10px 18px 16px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
    }
    .com-nav.is-open { display: flex; }
    .com-nav a { padding: 12px 14px; border-radius: 10px; font-size: 15px; }
    .com-nav a.com-nav__cta { margin: 8px 0 0; text-align: center; }
}

/* ---------------------------------------------------------------- buttons */
.com-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}
.com-btn svg { width: 17px; height: 17px; }
.com-btn:active { transform: translateY(1px); }
.com-btn--primary {
    background: var(--c-brand);
    color: #fff;
    box-shadow: 0 8px 20px rgba(238, 108, 76, 0.3);
}
.com-btn--primary:hover { background: var(--c-brand-dark); box-shadow: 0 10px 24px rgba(238, 108, 76, 0.38); }
.com-btn--ghost {
    background: #fff;
    color: var(--c-text);
    border: 1px solid #dcdcdc;
}
.com-btn--ghost:hover { border-color: var(--c-text); }
.com-btn--dark { background: var(--c-dark); color: #fff; }
.com-btn--dark:hover { background: #000; }

/* ---------------------------------------------------------------- hero (home) */
.com-hero { padding: 64px 0 30px; }
.com-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
    gap: 56px;
    align-items: center;
}
.com-hero h1 {
    font-size: clamp(30px, 4.6vw, 46px);
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}
.com-hero h1 em { font-style: normal; color: var(--c-brand-deep); }
.com-hero__sub { font-size: 16.5px; color: var(--c-muted); max-width: 480px; margin-bottom: 28px; }
.com-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.com-hero__stats { display: flex; flex-wrap: wrap; gap: 12px 34px; }
.com-hero__stat strong { display: block; font-size: 21px; font-weight: 600; color: var(--c-text); line-height: 1.2; }
.com-hero__stat span { font-size: 12.5px; color: var(--c-faint); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }

.com-hero__visual { position: relative; }
.com-hero__img {
    display: block;
    width: 100%;
    height: auto; /* HTML atribut height nesmi prebit aspect-ratio */
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow-pop);
    background: #f1efed;
}
.com-hero__card {
    position: absolute;
    left: -34px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 10px 18px 10px 12px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
}
.com-hero__card img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 12px;
    background: #f6f6f6;
}
.com-hero__card strong { display: block; font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.com-hero__card span { font-size: 12px; color: var(--c-muted); }

@media (max-width: 991px) {
    .com-hero { padding: 40px 0 16px; }
    .com-hero__grid { grid-template-columns: 1fr; gap: 34px; }
    .com-hero__img { aspect-ratio: 16 / 10; }
    .com-hero__card { left: 14px; bottom: 14px; }
}

/* ---------------------------------------------------------------- section frame */
.com-section { padding: 44px 0; }
.com-section__head { max-width: 640px; margin-bottom: 30px; }
.com-section__head h2 { font-size: clamp(23px, 3vw, 30px); margin-bottom: 8px; }
.com-section__head p { color: var(--c-muted); }
.com-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------------------------------------------------------------- country grid */
.com-stores { scroll-margin-top: 90px; }
.com-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.com-store {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 14px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-text);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}
.com-store:hover {
    border-color: var(--c-brand);
    box-shadow: 0 10px 24px rgba(238, 108, 76, 0.16);
    transform: translateY(-2px);
}
.com-store img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}
.com-store span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------------------------------------------------------------- USP strip */
.com-usp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.com-usp__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 20px 20px;
}
.com-usp__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--c-brand-soft);
    color: var(--c-brand);
    display: flex;
    align-items: center;
    justify-content: center;
}
.com-usp__icon svg { width: 22px; height: 22px; }
.com-usp__item strong { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 2px; }
.com-usp__item span { font-size: 13px; color: var(--c-muted); line-height: 1.5; display: block; }
@media (max-width: 991px) { .com-usp { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .com-usp { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- category / product cards */
.com-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}
.com-cat {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    background: #1c1c1c;
    box-shadow: var(--shadow-card);
}
.com-cat img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.3s;
    opacity: 0.96;
}
.com-cat:hover img { transform: scale(1.045); opacity: 1; }
.com-cat__label {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(4px);
    border-radius: 13px;
    padding: 11px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--c-text);
}
.com-cat__label svg { width: 16px; height: 16px; color: var(--c-brand); flex-shrink: 0; transition: transform 0.2s; }
.com-cat:hover .com-cat__label svg { transform: translateX(3px); }

.com-prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 18px;
}
.com-prod {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}
.com-prod:hover { border-color: var(--c-brand-line); box-shadow: 0 14px 34px rgba(238, 108, 76, 0.14); transform: translateY(-3px); }
.com-prod img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f6f5f4;
}
.com-prod__body { padding: 14px 16px 16px; }
.com-prod__body strong { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.35; margin-bottom: 6px; }
.com-prod__go {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-brand-deep);
}
.com-prod__go svg { width: 14px; height: 14px; transition: transform 0.2s; }
.com-prod:hover .com-prod__go svg { transform: translateX(3px); }

.com-gateway-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 26px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--c-brand-soft);
    border: 1px solid var(--c-brand-line);
    font-size: 13.5px;
    color: #7a5a4d;
}
.com-gateway-note svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--c-brand); margin-top: 2px; }

/* ---------------------------------------------------------------- home teaser cards */
.com-teasers { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.com-teaser {
    position: relative;
    display: block;
    padding: 30px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--c-line);
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}
.com-teaser:hover { border-color: var(--c-brand-line); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }
.com-teaser--dark { background: var(--c-dark); border-color: var(--c-dark); }
.com-teaser--dark h3, .com-teaser--dark { color: #fff; }
.com-teaser--dark p { color: #b9b9b9; }
.com-teaser__icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--c-brand-soft);
    color: var(--c-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.com-teaser--dark .com-teaser__icon { background: rgba(238, 108, 76, 0.16); }
.com-teaser__icon svg { width: 22px; height: 22px; }
.com-teaser h3 { font-size: 19px; margin-bottom: 6px; }
.com-teaser p { font-size: 14px; color: var(--c-muted); margin-bottom: 14px; max-width: 420px; }
.com-teaser__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-brand-deep);
}
.com-teaser--dark .com-teaser__link { color: var(--c-brand); }
.com-teaser__link svg { width: 15px; height: 15px; transition: transform 0.2s; }
.com-teaser:hover .com-teaser__link svg { transform: translateX(3px); }
@media (max-width: 767px) { .com-teasers { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- contact page */
.com-page-head { padding: 46px 0 6px; }
.com-page-head h1 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 10px; }
.com-page-head p { color: var(--c-muted); max-width: 620px; }

.contact-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 50px 28px 46px;
    border-radius: 22px;
    background: linear-gradient(135deg, #fffcfa 0%, #fbf4f0 100%);
    border: 1px solid #f0e6e1;
    margin-top: 28px;
}
.contact-hero::before,
.contact-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(238, 108, 76, 0.07) 0%, rgba(238, 108, 76, 0) 70%);
}
.contact-hero::before { width: 420px; height: 420px; left: -140px; top: -180px; }
.contact-hero::after  { width: 520px; height: 520px; right: -200px; bottom: -280px; }
.contact-hero > * { position: relative; }
.contact-hero__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--c-brand);
    box-shadow: 0 0 0 10px rgba(238, 108, 76, 0.14), 0 12px 28px rgba(238, 108, 76, 0.35);
}
.contact-hero__icon svg { width: 32px; height: 32px; }
.contact-hero__title { font-size: 31px; font-weight: 600; margin-bottom: 10px; }
.contact-hero__title span { display: block; }
.contact-hero__topics {
    margin-bottom: 20px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.contact-hero__phone {
    display: inline-block;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--c-brand-deep);
    text-decoration: none;
    transition: color 0.15s;
}
.contact-hero__phone:hover { color: var(--c-brand); }
.contact-hero__hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 8px;
    font-size: 14.5px;
    color: var(--c-muted);
}
.contact-hero__hours svg { width: 16px; height: 16px; }
.contact-hero__email {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    padding: 11px 22px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--c-brand-line);
    color: var(--c-text);
    font-size: 15.5px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
}
.contact-hero__email svg { width: 18px; height: 18px; color: var(--c-brand); }
.contact-hero__email:hover { border-color: var(--c-brand); color: var(--c-brand-dark); box-shadow: 0 6px 18px rgba(238, 108, 76, 0.22); }

/* phone by country */
.com-localphone {
    margin-top: 22px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 22px;
    padding: 28px 30px;
    box-shadow: var(--shadow-card);
}
.com-localphone__head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.com-localphone__head svg { width: 21px; height: 21px; color: var(--c-brand); }
.com-localphone__head h2 { font-size: 20px; }
.com-localphone > p { font-size: 13.5px; color: var(--c-muted); margin-bottom: 18px; }
.com-localphone__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 22px; align-items: start; }
@media (max-width: 767px) { .com-localphone__row { grid-template-columns: 1fr; } }

.com-select-wrap { position: relative; }
.com-select-wrap .com-flag {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    display: none;
}
.com-select-wrap.has-flag .com-flag { display: block; }
.com-select-wrap select {
    width: 100%;
    height: 52px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: var(--c-text);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23303030' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
    border: 1.5px solid #dcdcdc;
    border-radius: 13px;
    padding: 0 42px 0 16px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.com-select-wrap.has-flag select { padding-left: 52px; }
.com-select-wrap select:focus {
    outline: none;
    border-color: var(--c-brand);
    box-shadow: 0 0 0 3px rgba(238, 108, 76, 0.18);
}

.com-localphone__result { min-height: 52px; }
.com-phone-line { display: flex; flex-direction: column; gap: 2px; padding: 6px 0 10px; }
.com-phone-line + .com-phone-line { border-top: 1px solid var(--c-line); padding-top: 12px; }
.com-phone-line a {
    font-size: 23px;
    font-weight: 700;
    color: var(--c-brand-deep);
    text-decoration: none;
}
.com-phone-line a:hover { color: var(--c-brand); }
.com-phone-line span { font-size: 13px; color: var(--c-muted); }
.com-localphone__store {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-brand-deep);
}
.com-localphone__store svg { width: 14px; height: 14px; }
.com-localphone__empty { font-size: 14px; color: var(--c-muted); padding-top: 12px; }

/* contact grid: info + form (prevzato z contact-page.css) */
.com-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}
@media (max-width: 991px) { .com-contact-grid { grid-template-columns: 1fr; gap: 34px; } }
.com-contact-grid .contact-section-title { margin: 0 0 18px; font-size: 23px; font-weight: 600; }

.contact-info { padding-top: 8px; }
.contact-info__body { font-size: 15px; line-height: 1.7; color: #4a4a4a; }
.contact-block { position: relative; padding: 4px 0 22px 62px; margin-bottom: 8px; }
.contact-block + .contact-block { border-top: 1px solid var(--c-line); padding-top: 22px; }
.contact-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--c-brand-soft);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}
.contact-block + .contact-block::before { top: 20px; }
.contact-block--address::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ee6c4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.contact-block--service::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ee6c4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18v-6a9 9 0 0 1 18 0v6'/%3E%3Cpath d='M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z'/%3E%3C/svg%3E"); }
.contact-block--company::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ee6c4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E"); }
.contact-block h3 { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.contact-block p { margin: 0 0 8px; }
.contact-block p:last-child { margin-bottom: 0; }
.contact-block strong { font-weight: 600; }
.contact-info__body a { color: var(--c-brand-dark); text-decoration: none; border-bottom: 1px solid var(--c-brand-line); }
.contact-info__body a:hover { color: var(--c-brand); border-bottom-color: var(--c-brand); }
.contact-block .contact-note { font-size: 13px; color: var(--c-muted); line-height: 1.55; margin-top: 10px; }

.contact-form-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 22px;
    padding: 34px 36px 30px;
    box-shadow: var(--shadow-card);
}
.contact-form-card__intro { margin: -6px 0 24px; font-size: 15px; line-height: 1.6; color: var(--c-muted); }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { margin-bottom: 18px; }
.contact-field label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 600; }
.contact-field__req { color: var(--c-brand); }
.contact-field__opt { font-weight: 400; color: var(--c-muted); font-size: 13px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 14px;
    font: inherit;
    font-size: 15px;
    color: var(--c-text);
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    transition: border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
    appearance: none;
}
.contact-form textarea { height: auto; min-height: 150px; padding: 12px 14px; line-height: 1.55; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--c-brand);
    box-shadow: 0 0 0 3px rgba(238, 108, 76, 0.18);
}
.contact-form input.is-invalid,
.contact-form textarea.is-invalid { border-color: var(--c-err); }
.contact-field__error { margin: 6px 0 0; font-size: 13px; color: var(--c-err); }
.contact-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    margin-top: 6px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: var(--c-brand);
    color: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(238, 108, 76, 0.3);
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}
.contact-form__submit svg { width: 18px; height: 18px; }
.contact-form__submit:hover { background: var(--c-brand-dark); box-shadow: 0 10px 24px rgba(238, 108, 76, 0.38); }
.contact-form__submit:active { transform: translateY(1px); }
.contact-form__submit:disabled { opacity: 0.65; cursor: default; transform: none; }
.contact-form__consent { margin: 16px 0 0; font-size: 12.5px; line-height: 1.55; color: var(--c-muted); }
.contact-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-form__result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 6px;
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.55;
}
.contact-form__result--success { background: #edf7f0; color: var(--c-ok); border: 1px solid #cfe9d8; }
.contact-form__result--error { background: #fdeeee; color: var(--c-err); border: 1px solid #f3cccc; }
.contact-form__result-icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.contact-form__result--success .contact-form__result-icon { background: var(--c-ok); }
.contact-form__result--error .contact-form__result-icon { background: var(--c-err); }

/* ---------------------------------------------------------------- manuals */
.com-manual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}
.com-manual-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.com-manual-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--c-line);
}
.com-manual-card__head img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.com-manual-card__head strong { font-size: 15.5px; font-weight: 600; }
.com-manual-card ul { list-style: none; }
.com-manual-card li + li { margin-top: 2px; }
.com-manual-card a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    margin: 0 -10px;
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--c-text);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.com-manual-card a:hover { background: var(--c-brand-soft); color: var(--c-brand-deep); }
.com-manual-card a svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--c-brand); margin-top: 2px; }

/* ---------------------------------------------------------------- footer */
.com-footer { background: var(--c-dark); color: #c9c9c9; margin-top: 56px; flex-shrink: 0; }
.com-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 40px;
    padding: 48px 0 38px;
}
.com-footer__brand img { width: 172px; height: 26px; margin-bottom: 16px; }
.com-footer__brand p { font-size: 13.5px; color: #9c9c9c; max-width: 300px; margin-bottom: 18px; }
.com-footer__social { display: flex; gap: 12px; }
.com-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: background 0.15s, transform 0.12s;
}
.com-footer__social a:hover { background: var(--c-brand); transform: translateY(-2px); }
.com-footer__social svg { width: 18px; height: 18px; }
.com-footer h3 {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b8b8b;
    margin-bottom: 14px;
}
.com-footer ul { list-style: none; }
.com-footer li { margin-bottom: 8px; }
.com-footer a { color: #c9c9c9; text-decoration: none; font-size: 14px; transition: color 0.15s; }
.com-footer a:hover { color: #fff; }
.com-footer address { font-style: normal; font-size: 13.5px; line-height: 1.8; color: #9c9c9c; }
.com-footer address a { font-size: inherit; }
.com-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: space-between;
    font-size: 12.5px;
    color: #8b8b8b;
}
@media (max-width: 860px) {
    .com-footer__grid { grid-template-columns: 1fr; gap: 30px; padding: 38px 0 28px; }
}

/* ---------------------------------------------------------------- misc */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
}
