/* ============================================================
   ŠILDYMO AUTOMATIKA — sildymoautomatika.lt
   Design system: engineering precision / warm technical
   ============================================================ */

:root {
    --navy: #1b365d;
    --navy-deep: #122441;
    --navy-ink: #0d1a30;
    --red: #c1272d;
    --red-dark: #9a1f24;
    --red-soft: #fbeeee;
    --paper: #faf9f6;
    --cream: #f2efe9;
    --ink: #1a2233;
    --muted: #5b6477;
    --faint: #8d94a5;
    --line: #e4dfd5;
    --line-strong: #cfc8ba;
    --white: #ffffff;

    --font-display: 'Bricolage Grotesque', 'Instrument Sans', sans-serif;
    --font-body: 'Instrument Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    --radius: 8px;
    --container: 1180px;
    --shadow-card: 0 1px 2px rgba(13, 26, 48, .05), 0 12px 32px -16px rgba(13, 26, 48, .18);
    --shadow-pop: 0 2px 6px rgba(13, 26, 48, .08), 0 24px 48px -20px rgba(13, 26, 48, .28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.12;
    color: var(--navy-ink);
    font-weight: 700;
    letter-spacing: -.015em;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- mono micro-labels ---------- */
.tag {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.tag::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding: 16px 28px;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    white-space: nowrap;
}
.btn svg { flex: none; }
.btn-primary {
    background: var(--red);
    color: #fff;
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -10px rgba(193, 39, 45, .55);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--line-strong);
}
.btn-outline:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
}
.btn-ghost-light {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .25);
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-2px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(250, 249, 246, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 76px;
}
.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: .01em;
    text-decoration: none;
    line-height: 1.05;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 34px;
    height: 34px;
    flex: none;
}
.logo .l1 { color: var(--red); display: block; }
.logo .l2 { color: var(--navy); display: block; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 6px;
    transition: background .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--cream); }
.main-nav a.active { color: var(--red); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
    text-decoration: none;
    text-align: right;
    line-height: 1.25;
}
.header-phone .lbl {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .14em;
    color: var(--faint);
    display: block;
    text-transform: uppercase;
}
.header-phone .num {
    font-weight: 700;
    font-size: 16.5px;
    color: var(--navy);
}
.header-cta .btn { padding: 13px 22px; font-size: 15px; }

.menu-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--line-strong);
    border-radius: 6px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(27, 54, 93, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 54, 93, .035) 1px, transparent 1px),
        var(--paper);
    background-size: 44px 44px, 44px 44px, auto;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    padding: 84px 0 96px;
}
.hero h1 {
    font-size: clamp(38px, 4.6vw, 58px);
    margin: 22px 0 20px;
}
.hero h1 .accent { color: var(--red); }
.hero .lead {
    font-size: 19px;
    color: var(--muted);
    max-width: 50ch;
    margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 10px 28px; padding: 0; list-style: none; }
.hero-points li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
}
.hero-points svg { color: var(--red); flex: none; }

.hero-visual { position: relative; }
.hero-visual .photo {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-pop);
    border: 1px solid var(--line);
    transform: rotate(.6deg);
}
.hero-visual .photo img { width: 100%; height: 460px; object-fit: cover; }

.thermo-card {
    position: absolute;
    left: -28px;
    bottom: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-pop);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floaty 5s ease-in-out infinite;
}
.thermo-card .temp {
    font-family: var(--font-mono);
    font-size: 30px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
}
.thermo-card .temp sup { font-size: 14px; color: var(--red); }
.thermo-card .desc {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--faint);
    line-height: 1.5;
}
.thermo-card .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2faf64;
    box-shadow: 0 0 0 4px rgba(47, 175, 100, .15);
    flex: none;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================================
   PARTNER STRIP
   ============================================================ */
.partner-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}
.partner-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 26px 0;
    flex-wrap: wrap;
}
.partner-strip .strip-label {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--faint);
}
.partner-strip .brands {
    display: flex;
    align-items: center;
    gap: 44px;
    flex-wrap: wrap;
}
.brand-word {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    color: var(--navy);
    opacity: .55;
    letter-spacing: .02em;
    transition: opacity .2s ease;
    text-decoration: none;
}
.brand-word:hover { opacity: 1; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; }
.section.alt { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    margin: 18px 0 14px;
}
.section-head p { color: var(--muted); font-size: 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .tag { justify-content: center; }
.section-head.center .tag::before { display: none; }

/* ---------- service cards ---------- */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 34px 30px 30px;
    box-shadow: var(--shadow-card);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-pop);
    border-color: var(--line-strong);
}
.card .icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--red-soft);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 16px; flex: 1; }
.card .card-link {
    margin-top: 20px;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.card .card-link:hover { text-decoration: underline; }
.card .num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--faint);
    letter-spacing: .12em;
    margin-bottom: 14px;
}

/* ---------- process steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}
.step {
    padding: 34px 28px 38px;
    border-left: 1px solid var(--line);
    position: relative;
}
.step:first-child { border-left: none; }
.step .num {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: .12em;
    display: block;
    margin-bottom: 16px;
}
.step h3 { font-size: 18.5px; margin-bottom: 9px; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: zoom-in;
    box-shadow: var(--shadow-card);
    transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.gallery-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
}
.gallery-item figcaption::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--red);
    flex: none;
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(13, 26, 48, .92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 22px;
    right: 26px;
    background: none;
    border: none;
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    opacity: .8;
}
.lightbox-close:hover { opacity: 1; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 21px 56px 21px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17.5px;
    color: var(--navy-ink);
    position: relative;
    transition: color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 22px;
    color: var(--red);
    transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--red); }
.faq-item .faq-body {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 16px;
}

/* ---------- CTA band ---------- */
.cta-band {
    background:
        radial-gradient(900px 400px at 85% -10%, rgba(193, 39, 45, .25), transparent 60%),
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
        var(--navy-deep);
    background-size: auto, 44px 44px, 44px 44px, auto;
    border-radius: 18px;
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, .75); font-size: 17.5px; max-width: 52ch; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding: 64px 0 56px;
    background:
        linear-gradient(rgba(27, 54, 93, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 54, 93, .035) 1px, transparent 1px),
        var(--paper);
    background-size: 44px 44px, 44px 44px, auto;
    border-bottom: 1px solid var(--line);
}
.page-hero h1 {
    font-size: clamp(32px, 4vw, 46px);
    margin: 18px 0 14px;
}
.page-hero p { color: var(--muted); font-size: 18.5px; max-width: 62ch; }

/* ---------- service detail rows ---------- */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
}
.service-row:last-of-type { border-bottom: none; }
.service-row.flip .service-media { order: 2; }
.service-row h2 { font-size: clamp(24px, 2.8vw, 32px); margin: 14px 0 14px; }
.service-row p { color: var(--muted); }
.service-row ul {
    list-style: none;
    margin-top: 20px;
    display: grid;
    gap: 11px;
}
.service-row li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: 16px;
    color: var(--ink);
}
.service-row li svg { color: var(--red); flex: none; margin-top: 4px; }
.service-media img {
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.service-media.icon-panel {
    height: 400px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background:
        linear-gradient(rgba(27, 54, 93, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 54, 93, .05) 1px, transparent 1px),
        var(--cream);
    background-size: 32px 32px, 32px 32px, auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

/* ---------- partner cards ---------- */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.partner-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
    transition: transform .2s ease, box-shadow .2s ease;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.partner-card .brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 4px;
}
.partner-card .brand-origin {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--faint);
    display: block;
    margin-bottom: 16px;
}
.partner-card p { color: var(--muted); font-size: 16px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px;
    align-items: start;
}
.contact-info .info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.contact-info .info-item:first-child { padding-top: 6px; }
.contact-info .icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--red-soft);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.contact-info .lbl {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--faint);
    display: block;
    margin-bottom: 3px;
}
.contact-info a.val, .contact-info .val {
    font-weight: 600;
    font-size: 17.5px;
    color: var(--navy);
    text-decoration: none;
}
.contact-info a.val:hover { color: var(--red); }
.contact-info .note { font-size: 14.5px; color: var(--muted); margin-top: 3px; }

.contact-form-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}
.contact-form-panel h2 { font-size: 24px; margin-bottom: 6px; }
.contact-form-panel .sub { color: var(--muted); font-size: 15.5px; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}
.form-field input, .form-field textarea {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    padding: 13px 15px;
    border: 1.5px solid var(--line-strong);
    border-radius: 8px;
    background: var(--paper);
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 54, 93, .12);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.form-foot .privacy { font-size: 13.5px; color: var(--faint); max-width: 38ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-ink);
    color: rgba(255, 255, 255, .72);
    margin-top: 96px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 48px;
}
.site-footer .logo .l1 { color: #ff6b6f; }
.site-footer .logo .l2 { color: #9db4d8; }
.site-footer p { font-size: 15px; }
.footer-col h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 18px;
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: 15.5px;
    transition: color .15s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .45);
}

/* ---------- language switcher ---------- */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 10px;
    padding-left: 14px;
    border-left: 1px solid var(--line);
}
.lang-switch a {
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--faint);
    text-decoration: none;
    padding: 7px 8px;
    border-radius: 6px;
}
.lang-switch a:hover { color: var(--navy); background: var(--cream); }

/* ---------- reviews ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 26px 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.review-card .quote-mark {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: .6;
    color: var(--red);
    opacity: .35;
    margin-bottom: 14px;
}
.review-card blockquote {
    font-size: 15.5px;
    color: var(--ink);
    flex: 1;
    margin-bottom: 18px;
}
.review-card .reviewer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}
.review-card .reviewer .name {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy-ink);
    display: block;
}
.review-card .reviewer .src {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--faint);
}
.review-card .fb-ic { color: #1877f2; flex: none; }
.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 18px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .08em;
    color: var(--ink);
    text-decoration: none;
    transition: border-color .15s ease;
}
.reviews-badge:hover { border-color: var(--navy); }
.reviews-badge .pct { color: var(--red); font-weight: 600; }

/* ---------- messenger bubble ---------- */
.msgr-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 65;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #0084ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 132, 255, .4);
    transition: transform .18s ease, box-shadow .18s ease;
}
.msgr-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 26px rgba(0, 132, 255, .5); }

/* ============================================================
   MOBILE CALL BAR
   ============================================================ */
.mobile-callbar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 -8px 24px rgba(13, 26, 48, .1);
}
.mobile-callbar .btn { flex: 1; padding: 14px 10px; font-size: 15px; }

/* ============================================================
   ANIMATIONS (page load)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(18px);
        animation: rise .7s cubic-bezier(.22, .8, .36, 1) forwards;
    }
    .reveal.d1 { animation-delay: .08s; }
    .reveal.d2 { animation-delay: .16s; }
    .reveal.d3 { animation-delay: .24s; }
    .reveal.d4 { animation-delay: .32s; }
    @keyframes rise {
        to { opacity: 1; transform: translateY(0); }
    }
    .io-reveal {
        opacity: 0;
        transform: translateY(22px);
        transition: opacity .6s ease, transform .6s cubic-bezier(.22, .8, .36, 1);
    }
    .io-reveal.shown { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 56px 0 72px; }
    .hero-visual .photo img { height: 380px; }
    .thermo-card { left: 14px; }
    .cards-3 { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .step { border-top: 1px solid var(--line); }
    .step:nth-child(1), .step:nth-child(2) { border-top: none; }
    .step:nth-child(3) { border-left: none; }
    .service-row { grid-template-columns: 1fr; gap: 32px; }
    .service-row.flip .service-media { order: 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    .section { padding: 64px 0; }

    /* nav -> hamburger */
    .menu-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 18px 20px;
        gap: 2px;
        box-shadow: 0 24px 40px -20px rgba(13, 26, 48, .25);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 14px 12px; font-size: 17px; border-radius: 8px; }
    .header-cta .btn { display: none; }
    .header-phone { display: none; }

    .hero h1 { font-size: clamp(32px, 9vw, 42px); }
    .hero .lead { font-size: 17.5px; }
    .hero-visual .photo { transform: none; }
    .hero-visual .photo img { height: 300px; }
    .thermo-card { padding: 12px 16px; bottom: 18px; }
    .thermo-card .temp { font-size: 24px; }

    .partner-strip-inner { justify-content: center; text-align: center; }
    .partner-strip .brands { justify-content: center; gap: 28px; }

    .cards-3 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step { border-left: none !important; border-top: 1px solid var(--line) !important; }
    .step:first-child { border-top: none !important; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 300px; }

    .cta-band { padding: 44px 28px; }
    .form-grid { grid-template-columns: 1fr; }
    .contact-form-panel { padding: 28px 22px; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 36px; }

    .mobile-callbar { display: flex; }
    body { padding-bottom: 74px; }
    .site-footer { margin-top: 64px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .msgr-fab { right: 16px; bottom: calc(86px + env(safe-area-inset-bottom)); width: 50px; height: 50px; }
    .lang-switch { margin-left: 0; padding: 10px 12px 0; border-left: none; border-top: 1px solid var(--line); margin-top: 8px; }
}
