:root {
    --brand: #159ac4;
    --brand-dark: #087da5;
    --brand-deep: #075f7d;
    --brand-light: #eaf8fc;
    --brand-soft: #f4fbfd;
    --accent: #ec6b73;
    --text: #18333f;
    --muted: #68808b;
    --border: #d9ebf1;
    --white: #ffffff;
    --page: #f5fafc;
    --success: #15806c;
    --shadow: 0 18px 48px rgba(19, 85, 108, 0.11);
    --shadow-soft: 0 12px 34px rgba(19, 85, 108, 0.075);
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
    --booking-container: 1480px;
    --side-space: clamp(14px, 3vw, 24px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    width: 100%;
    min-width: 0;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 6%, rgba(21, 154, 196, 0.09), transparent 26rem),
        radial-gradient(circle at 92% 32%, rgba(236, 107, 115, 0.07), transparent 24rem),
        var(--page);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: anywhere;
}

body,
button,
input,
select,
textarea {
    font-family: Arial, Helvetica, sans-serif;
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
}

img,
svg {
    display: block;
}

button,
input,
select,
textarea {
    max-width: 100%;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-left: max(var(--side-space), env(safe-area-inset-left));
    padding-right: max(var(--side-space), env(safe-area-inset-right));
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: max(12px, env(safe-area-inset-top));
    left: max(12px, env(safe-area-inset-left));
    padding: 10px 14px;
    color: var(--white);
    background: var(--brand-deep);
    border-radius: 8px;
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(236, 107, 115, 0.58);
    outline-offset: 3px;
}

/* Header */
.site-header {
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(217, 235, 241, 0.95);
    box-shadow: 0 7px 28px rgba(19, 85, 108, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(14px, 3vw, 28px);
}

.brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--text);
    text-decoration: none;
}

.brand-image {
    width: clamp(168px, 22vw, 255px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    color: var(--white);
    background: linear-gradient(145deg, var(--brand), var(--brand-dark));
    border-radius: 16px 16px 16px 5px;
    box-shadow: 0 10px 24px rgba(21, 154, 196, 0.25);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -2px;
}

.brand-copy {
    min-width: 0;
    display: grid;
    line-height: 1.05;
}

.brand-name {
    color: var(--brand-dark);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-description {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.header-actions {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 2.6vw, 28px);
}

.header-phone {
    display: grid;
    gap: 2px;
    text-align: right;
    white-space: nowrap;
}

.header-phone a {
    color: var(--text);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.header-phone span {
    color: var(--muted);
    font-size: 12px;
}

.back-link {
    min-width: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    color: var(--brand-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.back-link svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
}

.back-link:hover {
    color: var(--white);
    background: var(--brand);
    border-color: var(--brand);
    transform: translateY(-1px);
}

main {
    min-width: 0;
    overflow: hidden;
}

/* Main services page */
.hero {
    position: relative;
    padding: clamp(44px, 6vw, 70px) 0 clamp(30px, 4vw, 46px);
}

.hero::before,
.hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
    border-radius: 999px;
}

.hero::before {
    width: 280px;
    height: 280px;
    top: -110px;
    right: -70px;
    border: 56px solid rgba(21, 154, 196, 0.055);
}

.hero::after {
    width: 180px;
    height: 180px;
    bottom: -95px;
    left: -75px;
    border: 34px solid rgba(236, 107, 115, 0.045);
}

.hero-heading {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto clamp(25px, 4vw, 38px);
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: var(--brand-dark);
    background: var(--brand-light);
    border: 1px solid rgba(21, 154, 196, 0.14);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    background: var(--accent);
    border-radius: 50%;
}

h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(31px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.hero-heading p {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 20px);
}

.service-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 24px);
}

.service-card {
    position: relative;
    min-width: 0;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: clamp(26px, 3.2vw, 38px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 58px rgba(19, 85, 108, 0.18);
}

.service-card--record {
    color: var(--white);
    background: linear-gradient(145deg, #18a4ce 0%, #0b82ae 70%, #08749c 100%);
}

.service-card--record::after {
    position: absolute;
    width: 270px;
    height: 270px;
    right: -105px;
    bottom: -105px;
    content: "";
    border: 46px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.service-card--account {
    background: var(--white);
    border: 1px solid var(--border);
}

.card-icon {
    position: relative;
    z-index: 1;
    width: clamp(58px, 6vw, 68px);
    height: clamp(58px, 6vw, 68px);
    display: grid;
    place-items: center;
    margin-bottom: clamp(20px, 2.7vw, 26px);
    border-radius: 20px;
}

.service-card--record .card-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-card--account .card-icon {
    color: var(--brand-dark);
    background: var(--brand-light);
    border: 1px solid rgba(21, 154, 196, 0.12);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.service-card p {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 15px 0 24px;
    font-size: clamp(15px, 1.7vw, 17px);
}

.service-card--record p {
    color: rgba(255, 255, 255, 0.84);
}

.service-card--account p {
    color: var(--muted);
}

.service-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 9px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.service-list li {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
}

.service-list svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
}

.service-card--record .service-list {
    color: rgba(255, 255, 255, 0.92);
}

.service-card--account .service-list {
    color: #45616d;
}

.card-button {
    position: relative;
    z-index: 2;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: auto;
    padding: 12px 21px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-card--record .card-button {
    color: var(--brand-dark);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(0, 68, 94, 0.18);
}

.service-card--account .card-button {
    color: var(--white);
    background: var(--brand);
    box-shadow: 0 12px 26px rgba(21, 154, 196, 0.22);
}

.card-button:hover {
    transform: translateY(-2px);
}

.service-card--record .card-button:hover {
    background: #f2fbfe;
}

.service-card--account .card-button:hover {
    background: var(--brand-dark);
}

.card-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.info-section {
    padding: 18px 0 clamp(48px, 6vw, 72px);
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: clamp(16px, 2.4vw, 24px);
}

.benefits,
.help-card {
    min-width: 0;
    padding: clamp(24px, 3vw, 32px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.benefits {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 254, 0.96));
    border: 1px solid var(--border);
}

.benefits::before {
    position: absolute;
    width: 230px;
    height: 230px;
    top: -125px;
    right: -95px;
    content: "";
    background: rgba(21, 154, 196, 0.075);
    border-radius: 50%;
    pointer-events: none;
}

.section-title {
    margin: 0 0 22px;
    font-size: clamp(23px, 2.6vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.benefits-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.68fr);
    align-items: end;
    gap: 22px;
    margin-bottom: 24px;
}

.benefits-title-wrap .section-title {
    margin: 10px 0 8px;
}

.benefits-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.benefits-kicker svg {
    width: 18px;
    height: 18px;
}

.benefits-intro {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.benefits-trust {
    min-width: 0;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    color: var(--brand-deep);
    background: rgba(234, 248, 252, 0.9);
    border: 1px solid rgba(21, 154, 196, 0.14);
    border-radius: 16px;
}

.benefits-trust-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(145deg, var(--brand), var(--brand-dark));
    border-radius: 14px;
    box-shadow: 0 9px 20px rgba(21, 154, 196, 0.2);
}

.benefits-trust-icon svg {
    width: 23px;
    height: 23px;
}

.benefits-trust strong,
.benefits-trust small {
    display: block;
}

.benefits-trust strong {
    margin-bottom: 2px;
    font-size: 14px;
}

.benefits-trust small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.benefit-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.benefit-item {
    --item-color: var(--brand);
    --item-soft: var(--brand-light);
    position: relative;
    min-width: 0;
    min-height: 142px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    overflow: hidden;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(217, 235, 241, 0.95);
    border-radius: 18px;
    box-shadow: 0 9px 24px rgba(19, 85, 108, 0.055);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:nth-child(2) {
    --item-color: #0c8b78;
    --item-soft: #e9f8f4;
}

.benefit-item:nth-child(3) {
    --item-color: #d87842;
    --item-soft: #fff3eb;
}

.benefit-item:nth-child(4) {
    --item-color: #6d69bd;
    --item-soft: #f1effc;
}

.benefit-item::before {
    position: absolute;
    width: 4px;
    height: 46px;
    top: 21px;
    left: 0;
    content: "";
    background: var(--item-color);
    border-radius: 0 5px 5px 0;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(19, 85, 108, 0.095);
}

.benefit-number {
    position: absolute;
    top: 10px;
    right: 14px;
    color: rgba(24, 51, 63, 0.055);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--item-color);
    background: var(--item-soft);
    border: 1px solid rgba(21, 154, 196, 0.12);
    border-radius: 16px;
}

.benefit-icon svg {
    width: 25px;
    height: 25px;
}

.benefit-content {
    min-width: 0;
    display: block;
    padding-top: 3px;
}

.benefit-content strong {
    display: block;
    margin: 0 32px 6px 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.3;
}

.benefit-content span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.help-card {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(145deg, #183f50, #0c6f91);
}

.help-card::after {
    position: absolute;
    right: 22px;
    bottom: -72px;
    content: "+";
    color: rgba(255, 255, 255, 0.055);
    font-size: 220px;
    font-weight: 800;
    line-height: 1;
}

.help-card .section-title,
.help-card p,
.help-contacts,
.work-time {
    position: relative;
    z-index: 1;
}

.help-card .section-title {
    color: var(--white);
}

.help-card p {
    margin: -9px 0 19px;
    color: rgba(255, 255, 255, 0.76);
}

.help-contacts {
    display: grid;
    gap: 10px;
}

.help-contact {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.help-contact svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    color: #8ee4ff;
}

.work-time {
    margin-top: 17px;
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.76);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
}

/* Footer */
.site-footer {
    color: #536d78;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.footer-inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding-top: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.copyright {
    min-width: 0;
    font-size: 14px;
}

.copyright strong {
    display: block;
    color: var(--text);
    font-size: 15px;
}

.copyright a,
.footer-links a {
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px 22px;
}

.footer-links a {
    font-size: 14px;
}

.copyright a:hover,
.footer-links a:hover {
    text-decoration: underline;
}

/* Shared breadcrumb */
.breadcrumbs {
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs a {
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

/* Online booking */
.online-page,
.online-page main,
.booking-page-section {
    background: var(--white);
}

.online-page main {
    overflow: visible;
}

.booking-page-section {
    min-height: 680px;
    padding: clamp(24px, 3.5vw, 36px) 0 clamp(46px, 6vw, 70px);
}

.booking-container {
    width: 100%;
    max-width: var(--booking-container);
}

.booking-intro {
    min-width: 0;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) minmax(220px, auto);
    align-items: center;
    gap: 21px;
    margin-bottom: 28px;
}

.booking-intro-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(145deg, var(--brand), var(--brand-dark));
    border-radius: 22px;
    box-shadow: 0 15px 32px rgba(21, 154, 196, 0.23);
}

.booking-intro-icon svg {
    width: 37px;
    height: 37px;
}

.booking-intro-copy {
    min-width: 0;
}

.booking-intro-copy .eyebrow {
    margin-bottom: 8px;
}

.booking-intro h1 {
    font-size: clamp(30px, 4.2vw, 48px);
}

.booking-intro p {
    max-width: 720px;
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.booking-security {
    min-width: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    max-width: 300px;
    padding: 13px 15px;
    color: #176d5d;
    background: rgba(234, 248, 244, 0.9);
    border: 1px solid #cdebe2;
    border-radius: 15px;
}

.booking-security svg {
    width: 29px;
    height: 29px;
}

.booking-security span,
.booking-security strong {
    display: block;
}

.booking-security strong {
    margin-bottom: 2px;
    font-size: 13px;
}

.booking-security span {
    font-size: 11px;
    line-height: 1.35;
}

.booking-layout {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
}

.booking-card {
    min-width: 0;
    overflow: visible;
    background: var(--white);
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.booking-card-header {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.booking-card-label {
    display: inline-flex;
    margin-bottom: 6px;
    padding: 4px 9px;
    color: var(--brand-dark);
    background: var(--brand-light);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.booking-card-header h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(20px, 2.4vw, 23px);
    line-height: 1.2;
}

.booking-card-header p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.booking-live-status {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 8px 11px;
    color: #176d5d;
    background: #eaf8f4;
    border: 1px solid #cdebe2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.booking-live-status span {
    width: 8px;
    height: 8px;
    background: #22a98b;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34, 169, 139, 0.12);
}













.widget-message {
    padding: 16px;
    color: #8a4d18;
    background: #fff7e8;
    border: 1px solid #f3dfb7;
    border-radius: 12px;
}








.booking-sidebar {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.booking-side-card,
.booking-note {
    min-width: 0;
    height: 100%;
}

.booking-side-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 11px 30px rgba(19, 85, 108, 0.065);
}

.booking-side-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: var(--brand-dark);
    background: var(--brand-light);
    border-radius: 13px;
}

.booking-side-icon svg {
    width: 23px;
    height: 23px;
}

.booking-side-card h2 {
    margin: 0 0 13px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.2;
}

.booking-side-card p {
    margin: -3px 0 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.booking-steps {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.booking-steps li {
    min-width: 0;
    display: grid;
    grid-template-columns: 29px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
}

.booking-steps li > span {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    color: var(--brand-dark);
    background: var(--brand-light);
    border: 1px solid rgba(21, 154, 196, 0.12);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 900;
}

.booking-steps strong,
.booking-steps small {
    display: block;
}

.booking-steps strong {
    color: var(--text);
    font-size: 13px;
    line-height: 1.3;
}

.booking-steps small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.booking-side-card--help {
    color: var(--white);
    background: linear-gradient(145deg, #183f50, #0c6f91);
    border: 0;
}

.booking-side-card--help .booking-side-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
}

.booking-side-card--help h2 {
    color: var(--white);
}

.booking-side-card--help p {
    color: rgba(255, 255, 255, 0.74);
}

.booking-phone-list {
    display: grid;
    gap: 7px;
}

.booking-phone-list a {
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.booking-phone-list a:hover {
    text-decoration: underline;
}

.booking-work-time {
    margin-top: 15px;
    padding-top: 13px;
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12px;
}

.booking-note {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    padding: 16px 17px;
    color: #73551c;
    background: #fff9e9;
    border: 1px solid #f0e0b7;
    border-radius: 15px;
}

.booking-note svg {
    width: 23px;
    height: 23px;
    color: #c5922c;
}

.booking-note p,
.booking-note strong {
    display: block;
}

.booking-note p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}

.booking-note strong {
    margin-bottom: 2px;
    color: #5e4516;
    font-size: 13px;
}

.mobile-booking-help {
    display: none;
}

/* Record page */
.record-page,
.record-page main,
.record-hero {
    background: var(--page);
}

.online-hero {
    padding: clamp(24px, 4vw, 42px) 0 clamp(48px, 6vw, 72px);
}

.online-container {
    width: 100%;
    max-width: 1180px;
}

.online-heading {
    min-width: 0;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 21px;
    margin-bottom: 26px;
}

.online-heading-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(145deg, var(--brand), var(--brand-dark));
    border-radius: 22px;
    box-shadow: 0 15px 32px rgba(21, 154, 196, 0.23);
}

.online-heading-icon svg {
    width: 37px;
    height: 37px;
}

.online-heading .eyebrow {
    margin-bottom: 8px;
}

.online-heading h1 {
    font-size: clamp(30px, 4.2vw, 48px);
}

.online-heading p {
    max-width: 760px;
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.record-heading-icon {
    background: linear-gradient(145deg, #1688b4, #0f6f98);
}

.widget-panel {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.widget-panel-head {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(20px, 3vw, 28px);
    background: linear-gradient(135deg, #f4fbfd, #ffffff 62%);
    border-bottom: 1px solid var(--border);
}

.widget-step {
    display: inline-flex;
    margin-bottom: 7px;
    padding: 4px 9px;
    color: #0f6f98;
    background: #eaf6fb;
    border: 1px solid #cce7f2;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.widget-panel-head h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(21px, 2.6vw, 26px);
    line-height: 1.2;
}

.widget-panel-head p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.widget-secure {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    padding: 10px 13px;
    color: var(--success);
    background: #eaf8f4;
    border: 1px solid #cdebe2;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
}

.widget-secure svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
}

.widget-content {
    min-width: 0;
    padding: clamp(18px, 3vw, 30px);
}

.record-widget-content {
    min-height: 360px;
}

.record-placeholder,
.record-unavailable {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(22px, 4vw, 34px);
    color: var(--muted);
    text-align: center;
    background: #fbfdfe;
    border: 1px dashed #cfe4eb;
    border-radius: 16px;
}

.record-placeholder-icon,
.record-unavailable-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 4px;
    color: var(--brand-dark);
    background: var(--brand-light);
    border-radius: 18px;
}

.record-placeholder-icon svg,
.record-unavailable-icon svg {
    width: 31px;
    height: 31px;
}

.record-placeholder strong,
.record-unavailable strong {
    color: var(--text);
    font-size: 18px;
}

.record-placeholder span,
.record-unavailable span {
    max-width: 540px;
    font-size: 14px;
    line-height: 1.65;
}

.record-placeholder code,
.record-unavailable code {
    max-width: 100%;
    padding: 2px 6px;
    overflow-wrap: anywhere;
    color: #0f6f98;
    background: #eaf6fb;
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 12px;
}

.online-help {
    min-width: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    padding: clamp(18px, 2.5vw, 24px);
    color: var(--white);
    background: linear-gradient(145deg, #183f50, #0c6f91);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.online-help-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border-radius: 15px;
}

.online-help-icon svg {
    width: 26px;
    height: 26px;
}

.online-help-text {
    min-width: 0;
}

.online-help-text strong,
.online-help-text span {
    display: block;
}

.online-help-text strong {
    margin-bottom: 3px;
    font-size: 16px;
}

.online-help-text span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.online-help-phones {
    display: grid;
    gap: 4px;
    text-align: right;
    white-space: nowrap;
}

.online-help-phones a {
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.online-help-phones a:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 1024px) {
    .header-phone {
        display: none;
    }

    .service-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 350px;
    }

    .benefits-head {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
    }

    .booking-intro {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .booking-security {
        grid-column: 1 / -1;
        max-width: none;
    }

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

    .booking-note {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    :root {
        --side-space: 16px;
        --radius-lg: 20px;
    }

    .header-inner {
        min-height: 80px;
        gap: 10px;
    }

    .brand-image {
        width: clamp(145px, 48vw, 190px);
    }

    .brand-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 13px 13px 13px 4px;
        font-size: 20px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-description {
        display: none;
    }

    .back-link {
        width: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        border-radius: 12px;
        font-size: 0;
    }

    .back-link svg {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .hero {
        padding-top: 42px;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .service-card {
        min-height: 0;
        padding: 26px 22px;
    }

    .card-button {
        width: 100%;
        align-self: stretch;
    }

    .benefits-head,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefits-head {
        align-items: stretch;
        gap: 16px;
    }

    .benefit-item {
        min-height: 0;
    }

    .footer-inner {
        min-height: 0;
        display: grid;
        justify-content: stretch;
        gap: 16px;
        padding-top: 24px;
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .footer-links {
        justify-content: flex-start;
    }

    /* Online */
    body.online-page:not(.record-page) {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }

    .booking-page-section {
        padding-top: 22px;
        padding-bottom: 40px;
    }

    .booking-intro {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 14px;
        margin-bottom: 20px;
    }

    .booking-intro-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .booking-intro-icon svg {
        width: 28px;
        height: 28px;
    }

    .booking-intro-copy .eyebrow {
        display: none;
    }

    .booking-intro h1 {
        font-size: clamp(29px, 8vw, 36px);
    }

    .booking-intro p {
        font-size: 14px;
    }

    .booking-security {
        grid-template-columns: 31px minmax(0, 1fr);
        padding: 11px 13px;
    }

    .booking-security svg {
        width: 25px;
        height: 25px;
    }

    .booking-card-header {
        display: grid;
        gap: 12px;
        padding: 17px 0;
    }

    .booking-live-status {
        justify-self: start;
    }

    

    

    

    .booking-sidebar {
        grid-template-columns: 1fr;
    }

    .booking-note {
        grid-column: auto;
    }

    .mobile-booking-help {
        position: fixed;
        z-index: 50;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding-top: 9px;
        padding-right: max(14px, env(safe-area-inset-right));
        padding-bottom: calc(9px + env(safe-area-inset-bottom));
        padding-left: max(14px, env(safe-area-inset-left));
        color: var(--text);
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px rgba(19, 85, 108, 0.1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-booking-help span {
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
    }

    .mobile-booking-help a {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 13px;
        color: var(--white);
        background: var(--brand);
        border-radius: 11px;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
    }

    /* Record */
    .online-heading {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 14px;
        margin-bottom: 20px;
    }

    .online-heading-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .online-heading-icon svg {
        width: 28px;
        height: 28px;
    }

    .online-heading .eyebrow {
        display: none;
    }

    .online-heading h1 {
        font-size: clamp(29px, 8vw, 36px);
    }

    .online-heading p {
        font-size: 14px;
    }

    .widget-panel {
        border-radius: 18px;
    }

    .widget-panel-head {
        display: grid;
        align-items: stretch;
        gap: 13px;
    }

    .widget-secure {
        justify-self: start;
        white-space: normal;
    }

    .record-widget-content {
        min-height: 300px;
    }

    .record-placeholder,
    .record-unavailable {
        min-height: 250px;
    }

    .online-help {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .online-help-phones {
        grid-column: 1 / -1;
        padding-top: 13px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        text-align: left;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    :root {
        --side-space: 14px;
    }

    body {
        font-size: 15px;
    }

    .header-inner {
        min-height: 74px;
    }

    .brand-image {
        width: min(170px, 56vw);
    }

    .hero {
        padding-top: 34px;
    }

    .eyebrow {
        margin-bottom: 11px;
        padding: 6px 10px;
        font-size: 11px;
    }

    h1 {
        font-size: clamp(28px, 9vw, 34px);
    }

    .hero-heading p {
        margin-top: 13px;
        font-size: 15px;
    }

    .service-card {
        padding: 23px 19px;
        border-radius: 18px;
    }

    .service-card h2 {
        font-size: 27px;
    }

    .service-list li {
        font-size: 13px;
    }

    .benefits,
    .help-card {
        padding: 22px 18px;
    }

    .benefits-trust {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 12px;
    }

    .benefits-trust-icon {
        width: 42px;
        height: 42px;
    }

    .benefit-item {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
        padding: 18px 15px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .footer-links {
        display: grid;
        gap: 8px;
    }

    .breadcrumbs {
        margin-bottom: 18px;
        font-size: 12px;
    }

    .booking-intro,
    .online-heading {
        display: block;
    }

    .booking-intro-icon,
    .online-heading-icon {
        margin-bottom: 13px;
    }

    .booking-security {
        display: none;
    }

    .booking-card-header p {
        font-size: 12px;
    }

    .booking-side-card {
        padding: 19px 17px;
    }

    

    

    

    .mobile-booking-help span {
        max-width: 88px;
        line-height: 1.2;
    }

    .mobile-booking-help a {
        padding-inline: 11px;
        font-size: 13px;
    }

    .widget-content {
        padding: 14px;
    }

    .record-placeholder,
    .record-unavailable {
        padding: 22px 15px;
    }

    .online-help {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 17px;
    }

    .online-help-icon {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 360px) {
    :root {
        --side-space: 12px;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-image {
        width: min(154px, 55vw);
    }

    .back-link {
        width: 42px;
        min-width: 42px;
        min-height: 42px;
    }

    h1,
    .booking-intro h1,
    .online-heading h1 {
        font-size: 28px;
    }

    .service-card {
        padding: 21px 17px;
    }

    .card-button {
        min-height: 48px;
        padding: 11px 14px;
        font-size: 14px;
    }

    .benefit-item {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 17px 13px;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .booking-card-header h2 {
        font-size: 19px;
    }

    .booking-live-status {
        min-height: 36px;
        padding: 7px 10px;
    }

    .mobile-booking-help span {
        display: none;
    }

    .mobile-booking-help a {
        width: 100%;
    }
}

/* Landscape phones and short screens */
@media (max-height: 520px) and (orientation: landscape) {
    .header-inner {
        min-height: 64px;
    }

    .brand-image {
        width: 145px;
    }

    .hero,
    .online-hero,
    .booking-page-section {
        padding-top: 20px;
    }

    .mobile-booking-help {
        min-height: 54px;
        padding-top: 6px;
        padding-bottom: calc(6px + env(safe-area-inset-bottom));
    }

    .mobile-booking-help a {
        min-height: 38px;
    }
}

/* Hover effects only on devices that really support hover */
@media (hover: none) {
    .service-card:hover,
    .benefit-item:hover,
    .card-button:hover,
    .back-link:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .mobile-booking-help,
    .booking-sidebar,
    .back-link {
        display: none !important;
    }

    body,
    .online-page,
    .record-page {
        background: #fff !important;
    }

    .container,
    .booking-container,
    .online-container {
        max-width: none !important;
        padding: 0 !important;
    }

    
}

/* Outer placement only. The Renovatio widget itself keeps its original CSS and JavaScript. */
.booking-widget {
    width: 100%;
    min-width: 0;
    padding-top: 18px;
}

@media (max-width: 767px) {
    .booking-widget {
        padding-top: 10px;
    }
}

/* Renovatio: remove only the grey outer background.
   No styles are applied to calendar controls, icons, fields or checkboxes. */
.online-page #rnova-a_form .rnova-widget .v-main.blue-grey.lighten-5 {
    background-color: transparent !important;
    border-color: transparent !important;
}
