:root {
    --fb-ink: #012839;
    --fb-ink-2: #06516e;
    --fb-ink-3: #0b6685;
    --fb-accent: #f3a712;
    --fb-accent-hover: #ffc247;
    --fb-accent-dark: #b97700;
    --fb-blue: #06516e;
    --fb-green: #2f7d4a;
    --fb-red: #b74236;
    --fb-white: #ffffff;
    --fb-paper: #f7f6f2;
    --fb-surface: #eef0f1;
    --fb-line: #d8dde0;
    --fb-muted: #68727b;
    --fb-radius-sm: 8px;
    --fb-radius: 14px;
    --fb-radius-lg: 24px;
    --fb-shadow: 0 18px 50px rgba(17, 25, 31, 0.10);
    --fb-shadow-small: 0 8px 24px rgba(17, 25, 31, 0.08);
    --fb-shell: 1240px;
    --fb-header: 78px;
    --fb-transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--fb-header) + 20px); }
body.freebox-site {
    margin: 0;
    color: var(--fb-ink);
    background: var(--fb-white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--fb-accent-dark); }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(243, 167, 18, 0.55); outline-offset: 3px; }
::selection { color: var(--fb-ink); background: var(--fb-accent); }

.freebox-shell {
    width: min(var(--fb-shell), calc(100% - 48px));
    margin-inline: auto;
}
.freebox-main { min-height: 60vh; }
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}
.screen-reader-text:focus,
.skip-link:focus {
    clip: auto !important;
    width: auto; height: auto;
    top: 10px; left: 10px;
    z-index: 99999;
    padding: 12px 16px;
    color: var(--fb-ink);
    background: var(--fb-accent);
    border-radius: 6px;
}

/* Header */
.freebox-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--fb-header);
    background: rgba(1, 40, 57, 0.97);
    color: var(--fb-white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    transition: box-shadow var(--fb-transition), background var(--fb-transition);
}
.freebox-header.is-scrolled { box-shadow: 0 12px 34px rgba(0,0,0,0.22); background: rgba(1,40,57,0.99); }
.freebox-header__inner {
    min-height: var(--fb-header);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}
.freebox-logo { display: inline-flex; width: 225px; color: var(--fb-white); text-decoration: none; }
.freebox-logo img { display: block; width: 100%; height: auto; }
.freebox-logo--compact { width: 210px; }
.freebox-nav { justify-self: center; }
.freebox-nav__list { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.freebox-nav__list li { position: relative; margin: 0; }
.freebox-nav__list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: rgba(255,255,255,0.86);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--fb-transition);
}
.freebox-nav__list a:hover,
.freebox-nav__list .current-menu-item > a,
.freebox-nav__list .current-menu-ancestor > a { color: var(--fb-accent); }
.freebox-nav__list .sub-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: -18px;
    min-width: 270px;
    margin: 0;
    padding: 12px;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--fb-radius);
    background: var(--fb-ink-2);
    box-shadow: var(--fb-shadow);
    transition: all var(--fb-transition);
}
.freebox-nav__list li:hover > .sub-menu,
.freebox-nav__list li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.freebox-nav__list .sub-menu a { display: flex; padding: 8px 10px; min-height: 38px; border-radius: 7px; }
.freebox-nav__list .sub-menu a:hover { background: rgba(255,255,255,0.06); }
.freebox-header__actions { display: flex; align-items: center; gap: 16px; }
.freebox-header__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--fb-white); font-weight: 750; text-decoration: none; white-space: nowrap; }
.freebox-header__phone:hover { color: var(--fb-accent); }
.freebox-menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; color: var(--fb-white); background: transparent; border: 1px solid rgba(255,255,255,0.22); border-radius: 10px; cursor: pointer; }
.freebox-menu-toggle__lines { display: grid; gap: 5px; width: 22px; }
.freebox-menu-toggle__lines span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--fb-transition), opacity var(--fb-transition); }
.freebox-menu-toggle[aria-expanded="true"] .freebox-menu-toggle__lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.freebox-menu-toggle[aria-expanded="true"] .freebox-menu-toggle__lines span:nth-child(2) { opacity: 0; }
.freebox-menu-toggle[aria-expanded="true"] .freebox-menu-toggle__lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.freebox-staging-bar { padding: 8px 18px; color: #1d1a0e; background: #ffe9a8; border-bottom: 1px solid #e0c56e; font-size: 13px; text-align: center; }

/* Buttons and links */
.freebox-button,
.freebox-page-content .freebox-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    color: var(--fb-ink);
    background: var(--fb-accent);
    border: 2px solid var(--fb-accent);
    border-radius: var(--fb-radius-sm);
    box-shadow: none;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--fb-transition), border-color var(--fb-transition), transform var(--fb-transition), box-shadow var(--fb-transition);
}
.freebox-button:hover { color: var(--fb-ink); background: var(--fb-accent-hover); border-color: var(--fb-accent-hover); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(243,167,18,0.22); }
.freebox-button:active { transform: translateY(0); }
.freebox-button--secondary { color: inherit; background: transparent; border-color: currentColor; }
.freebox-button--secondary:hover { color: var(--fb-ink); background: var(--fb-white); border-color: var(--fb-white); }
.freebox-button--dark { color: var(--fb-white); background: var(--fb-ink); border-color: var(--fb-ink); }
.freebox-button--dark:hover { color: var(--fb-white); background: var(--fb-ink-3); border-color: var(--fb-ink-3); }
.freebox-button--compact { min-height: 42px; padding: 10px 17px; font-size: 14px; }
.freebox-button--small { min-height: 42px; padding: 10px 16px; font-size: 14px; }
.freebox-button--wide { width: 100%; }
.freebox-button[aria-disabled="true"], .freebox-button:disabled { opacity: 0.55; pointer-events: none; }
.freebox-button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.freebox-text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--fb-ink); font-weight: 800; text-decoration: none; }
.freebox-text-link:hover { color: var(--fb-accent-dark); }
.freebox-text-link .freebox-icon { width: 19px; transition: transform var(--fb-transition); }
.freebox-text-link:hover .freebox-icon { transform: translateX(3px); }
.freebox-icon { display: inline-block; width: 22px; height: 22px; flex: 0 0 auto; fill: currentColor; vertical-align: middle; }

/* Type */
.freebox-eyebrow { margin: 0 0 12px; color: var(--fb-accent-dark); font-size: 13px; font-weight: 900; letter-spacing: 0.13em; line-height: 1.3; text-transform: uppercase; }
.freebox-section--dark .freebox-eyebrow,
.freebox-hero .freebox-eyebrow,
.freebox-page-hero .freebox-eyebrow,
.freebox-cta-band .freebox-eyebrow { color: var(--fb-accent); }
.freebox-display,
.freebox-section-title,
.freebox-page-hero h1,
.freebox-page-content h2,
.freebox-page-content h3,
.freebox-article h1,
.freebox-article h2,
.freebox-article h3 {
    margin-top: 0;
    color: inherit;
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    font-weight: 850;
    line-height: 1.03;
    letter-spacing: -0.025em;
}
.freebox-display { margin-bottom: 22px; font-size: clamp(43px, 5.5vw, 76px); }
.freebox-section-title { margin-bottom: 20px; font-size: clamp(34px, 4vw, 54px); }
.freebox-section-lead { max-width: 760px; margin: 0; color: var(--fb-muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.freebox-section--dark .freebox-section-lead { color: rgba(255,255,255,0.72); }
.freebox-muted { color: var(--fb-muted); }
.freebox-kicker { font-size: 19px; font-weight: 750; }

/* Home hero */
.freebox-hero {
    position: relative;
    min-height: min(790px, calc(100vh - var(--fb-header)));
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: var(--fb-white);
    background: var(--fb-ink);
}
.freebox-hero__media { position: absolute; inset: 0; }
.freebox-hero__media picture { display: block; width: 100%; height: 100%; }
.freebox-hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(1,40,57,0.97) 0%, rgba(1,40,57,0.90) 42%, rgba(6,81,110,0.54) 68%, rgba(6,81,110,0.28) 100%);
}
.freebox-hero__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 34%;
    background: linear-gradient(0deg, rgba(1,40,57,0.80), transparent);
}
.freebox-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.freebox-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 620px) 1fr; align-items: center; padding-block: 88px 104px; }
.freebox-hero__content { max-width: 680px; }
.freebox-hero__lead { max-width: 655px; margin: 0 0 30px; color: rgba(255,255,255,0.84); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.freebox-hero__points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 20px; max-width: 650px; margin: 0 0 34px; padding: 0; list-style: none; }
.freebox-hero__points li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.91); font-size: 15px; font-weight: 700; }
.freebox-hero__points .freebox-icon { width: 20px; color: var(--fb-accent); }
.freebox-hero__note { margin-top: 15px; color: rgba(255,255,255,0.62); font-size: 14px; }
.freebox-hero__badge {
    position: absolute;
    right: 0;
    bottom: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 13px;
    max-width: 320px;
    padding: 17px 20px;
    background: rgba(1,40,57,0.88);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--fb-radius);
    backdrop-filter: blur(12px);
}
.freebox-hero__badge strong { display: block; font-size: 16px; }
.freebox-hero__badge span { color: rgba(255,255,255,0.68); font-size: 13px; }
.freebox-hero__badge .freebox-icon { color: var(--fb-accent); width: 30px; height: 30px; }

/* Trust bar */
.freebox-trust-bar { position: relative; z-index: 3; margin-top: -34px; }
.freebox-trust-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--fb-white); border-radius: var(--fb-radius); box-shadow: var(--fb-shadow); overflow: hidden; }
.freebox-trust-item { display: flex; align-items: center; gap: 14px; min-height: 108px; padding: 24px 26px; border-right: 1px solid var(--fb-line); }
.freebox-trust-item:last-child { border-right: 0; }
.freebox-trust-item__icon { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--fb-ink); background: var(--fb-accent); border-radius: 10px; }
.freebox-trust-item strong { display: block; margin-bottom: 2px; font-size: 16px; line-height: 1.25; }
.freebox-trust-item span { display: block; color: var(--fb-muted); font-size: 13px; line-height: 1.35; }

/* Sections */
.freebox-section { padding-block: 104px; }
.freebox-section--compact { padding-block: 72px; }
.freebox-section--paper { background: var(--fb-paper); }
.freebox-section--surface { background: var(--fb-surface); }
.freebox-section--dark { color: var(--fb-white); background: var(--fb-ink); }
.freebox-section--blue { color: var(--fb-white); background: var(--fb-blue); }
.freebox-section__head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 46px; }
.freebox-section__head > div:first-child { max-width: 810px; }
.freebox-section__head .freebox-text-link { flex: 0 0 auto; margin-bottom: 7px; }
.freebox-grid { display: grid; gap: 24px; }
.freebox-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.freebox-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.freebox-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.freebox-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(42px, 7vw, 96px); align-items: center; }
.freebox-split--top { align-items: start; }
.freebox-media-frame { position: relative; overflow: hidden; border-radius: var(--fb-radius-lg); box-shadow: var(--fb-shadow); background: var(--fb-ink-2); }
.freebox-media-frame img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.freebox-media-frame__label { position: absolute; left: 22px; bottom: 22px; padding: 10px 13px; color: var(--fb-ink); background: var(--fb-accent); border-radius: 7px; font-size: 13px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }

/* Scenario cards */
.freebox-scenario-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 32px; background: var(--fb-white); border: 1px solid var(--fb-line); border-radius: var(--fb-radius); box-shadow: var(--fb-shadow-small); overflow: hidden; transition: transform var(--fb-transition), box-shadow var(--fb-transition), border-color var(--fb-transition); }
.freebox-scenario-card:hover { transform: translateY(-5px); box-shadow: var(--fb-shadow); border-color: rgba(243,167,18,.75); }
.freebox-scenario-card__number { position: absolute; right: 22px; top: 15px; color: #edf0f1; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 82px; font-weight: 900; line-height: 1; }
.freebox-scenario-card__icon { position: relative; z-index: 1; display: inline-flex; width: 58px; height: 58px; align-items: center; justify-content: center; margin-bottom: 28px; color: var(--fb-ink); background: var(--fb-accent); border-radius: 13px; }
.freebox-scenario-card__icon .freebox-icon { width: 30px; height: 30px; }
.freebox-scenario-card h3 { position: relative; z-index: 1; margin: 0 0 14px; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 31px; line-height: 1.08; }
.freebox-scenario-card p { position: relative; z-index: 1; margin: 0 0 20px; color: var(--fb-muted); }
.freebox-scenario-card ul { position: relative; z-index: 1; display: grid; gap: 8px; margin: 0 0 28px; padding: 0; list-style: none; color: var(--fb-ink-3); font-size: 15px; }
.freebox-scenario-card li { display: flex; align-items: flex-start; gap: 8px; }
.freebox-scenario-card li::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; margin-top: .6em; background: var(--fb-accent); border-radius: 50%; }
.freebox-scenario-card .freebox-text-link { margin-top: auto; }

/* Feature lists */
.freebox-feature-list { display: grid; gap: 17px; margin: 28px 0; padding: 0; list-style: none; }
.freebox-feature-list li { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; }
.freebox-feature-list__icon { display: inline-flex; width: 31px; height: 31px; align-items: center; justify-content: center; color: var(--fb-ink); background: var(--fb-accent); border-radius: 8px; }
.freebox-feature-list__icon .freebox-icon { width: 18px; height: 18px; }
.freebox-feature-list strong { display: block; margin-bottom: 2px; }
.freebox-feature-list span { color: var(--fb-muted); font-size: 15px; }
.freebox-section--dark .freebox-feature-list span { color: rgba(255,255,255,.67); }

/* Steps */
.freebox-steps { counter-reset: steps; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; }
.freebox-step { position: relative; padding: 0 30px 0 0; }
.freebox-step:not(:last-child)::after { content: ""; position: absolute; top: 25px; right: 10px; width: calc(100% - 70px); height: 2px; transform: translateX(100%); background: linear-gradient(90deg,var(--fb-accent),rgba(243,167,18,.15)); }
.freebox-step__number { position: relative; z-index: 1; display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--fb-ink); background: var(--fb-accent); border-radius: 50%; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 23px; font-weight: 900; }
.freebox-step h3 { margin: 0 0 11px; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 25px; line-height: 1.1; }
.freebox-section--dark .freebox-step h3 { color: var(--fb-white); }
.freebox-step p { margin: 0; color: rgba(255,255,255,.67); font-size: 15px; }

/* Pricing */
.freebox-price-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; align-items: stretch; }
.freebox-price-card { position: relative; display: flex; flex-direction: column; padding: 34px; background: var(--fb-white); border: 1px solid var(--fb-line); border-radius: var(--fb-radius); box-shadow: var(--fb-shadow-small); }
.freebox-price-card--featured { border: 2px solid var(--fb-accent); transform: translateY(-10px); box-shadow: var(--fb-shadow); }
.freebox-price-card__badge { position: absolute; top: -14px; right: 24px; padding: 7px 12px; color: var(--fb-ink); background: var(--fb-accent); border-radius: 6px; font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.freebox-price-card__name { margin: 0 0 4px; color: var(--fb-muted); font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.freebox-price-card h3 { margin: 0 0 18px; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 31px; }
.freebox-price-card__price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 22px; }
.freebox-price-card__price strong { font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 54px; line-height: 1; letter-spacing: -.04em; }
.freebox-price-card__price span { color: var(--fb-muted); font-size: 15px; }
.freebox-price-card ul { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; }
.freebox-price-card li { display: flex; gap: 9px; color: var(--fb-ink-3); font-size: 15px; }
.freebox-price-card li .freebox-icon { width: 18px; color: var(--fb-green); }
.freebox-price-card .freebox-button { margin-top: auto; }
.freebox-price-note { margin: 28px 0 0; color: var(--fb-muted); font-size: 14px; text-align: center; }

/* Work and equipment cards */
.freebox-work-card,
.freebox-equipment-card,
.freebox-info-card { padding: 27px; background: var(--fb-white); border: 1px solid var(--fb-line); border-radius: var(--fb-radius); box-shadow: var(--fb-shadow-small); }
.freebox-work-card { display: flex; flex-direction: column; min-height: 275px; }
.freebox-work-card__icon,
.freebox-info-card__icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; margin-bottom: 21px; color: var(--fb-ink); background: var(--fb-accent); border-radius: 11px; }
.freebox-work-card h3,
.freebox-equipment-card h3,
.freebox-info-card h3 { margin: 0 0 10px; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 25px; line-height: 1.12; }
.freebox-work-card p,
.freebox-equipment-card p,
.freebox-info-card p { margin: 0 0 18px; color: var(--fb-muted); font-size: 15px; }
.freebox-work-card .freebox-text-link { margin-top: auto; }
.freebox-equipment-card { display: grid; grid-template-columns: 62px 1fr; gap: 18px; align-items: start; }
.freebox-equipment-card__icon { display: inline-flex; width: 62px; height: 62px; align-items: center; justify-content: center; color: var(--fb-white); background: var(--fb-ink); border-radius: 13px; }
.freebox-equipment-card__icon .freebox-icon { width: 31px; height: 31px; color: var(--fb-accent); }
.freebox-equipment-card__tag { display: inline-flex; padding: 4px 8px; color: var(--fb-green); background: #e7f4eb; border-radius: 5px; font-size: 12px; font-weight: 800; }

/* Mechanic */
.freebox-mechanic { overflow: hidden; border-radius: var(--fb-radius-lg); background: var(--fb-ink-2); }
.freebox-mechanic__content { padding: clamp(36px,5vw,70px); }
.freebox-mechanic__visual { min-height: 520px; position: relative; overflow: hidden; background: linear-gradient(145deg,#06516e,#012839); }
.freebox-mechanic__visual::before,
.freebox-mechanic__visual::after { content: ""; position: absolute; border: 2px solid rgba(243,167,18,.35); transform: rotate(45deg); }
.freebox-mechanic__visual::before { width: 310px; height: 310px; right: -90px; top: -70px; }
.freebox-mechanic__visual::after { width: 170px; height: 170px; left: 52px; bottom: 42px; }
.freebox-mechanic__symbol { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.freebox-mechanic__symbol .freebox-icon { width: 180px; height: 180px; color: var(--fb-accent); opacity: .93; }
.freebox-help-types { display: grid; gap: 15px; margin: 30px 0; }
.freebox-help-type { padding: 17px 19px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; }
.freebox-help-type strong { display: block; margin-bottom: 3px; }
.freebox-help-type span { color: rgba(255,255,255,.65); font-size: 14px; }

/* History and reviews */
.freebox-timeline { position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 24px; }
.freebox-timeline::before { content: ""; position: absolute; top: 37px; left: 8%; right: 8%; height: 2px; background: var(--fb-line); }
.freebox-timeline__item { position: relative; text-align: center; }
.freebox-timeline__year { position: relative; z-index: 1; display: inline-flex; min-width: 76px; height: 76px; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--fb-ink); background: var(--fb-accent); border: 7px solid var(--fb-paper); border-radius: 50%; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 21px; font-weight: 900; }
.freebox-timeline__item h3 { margin: 0 0 8px; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 23px; }
.freebox-timeline__item p { margin: 0; color: var(--fb-muted); font-size: 14px; }
.freebox-review-card { display: flex; flex-direction: column; min-height: 300px; padding: 30px; color: var(--fb-white); background: var(--fb-ink-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--fb-radius); }
.freebox-review-card__stars { color: var(--fb-accent); letter-spacing: .15em; }
.freebox-review-card blockquote { margin: 21px 0 25px; font-size: 18px; line-height: 1.55; }
.freebox-review-card footer { margin-top: auto; color: rgba(255,255,255,.62); font-size: 13px; }

/* FAQ */
.freebox-faq { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--fb-line); }
.freebox-faq details { border-bottom: 1px solid var(--fb-line); }
.freebox-faq summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 6px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 800; }
.freebox-faq summary::-webkit-details-marker { display: none; }
.freebox-faq summary::after { content: "+"; display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--fb-ink); background: var(--fb-accent); border-radius: 7px; font-size: 23px; font-weight: 500; line-height: 1; }
.freebox-faq details[open] summary::after { content: "−"; }
.freebox-faq__answer { max-width: 790px; padding: 0 55px 24px 6px; color: var(--fb-muted); }
.freebox-faq__answer p:first-child { margin-top: 0; }

/* CTA */
.freebox-cta-band { position: relative; overflow: hidden; padding-block: 78px; color: var(--fb-white); background: var(--fb-blue); }
.freebox-cta-band::before { content: ""; position: absolute; right: -80px; top: -150px; width: 440px; height: 440px; border: 90px solid rgba(255,255,255,.05); border-radius: 50%; }
.freebox-cta-band__inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.freebox-cta-band h2 { margin: 0 0 13px; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: clamp(35px,4vw,53px); line-height: 1.04; }
.freebox-cta-band p { max-width: 750px; margin: 0; color: rgba(255,255,255,.77); font-size: 18px; }

/* Page heroes and content */
.freebox-page-hero { padding-block: 62px 66px; color: var(--fb-white); background: linear-gradient(135deg,var(--fb-ink),#06516e); }
.freebox-page-hero__inner { max-width: 1000px; }
.freebox-page-hero h1 { max-width: 900px; margin: 18px 0 17px; font-size: clamp(43px,6vw,72px); }
.freebox-page-hero__lead { max-width: 780px; margin: 0; color: rgba(255,255,255,.73); font-size: clamp(18px,2vw,22px); }
.freebox-page-hero--article h1 { max-width: 1050px; font-size: clamp(40px,5vw,65px); }
.freebox-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; color: rgba(255,255,255,.58); list-style: none; font-size: 13px; }
.freebox-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 7px; opacity: .65; }
.freebox-breadcrumbs a { color: inherit; text-decoration: none; }
.freebox-breadcrumbs a:hover { color: var(--fb-accent); }
.freebox-page-content { padding-block: 72px 100px; }
.freebox-page-content > * { max-width: 920px; }
.freebox-page-content > .alignwide,
.freebox-page-content > .freebox-wide,
.freebox-page-content > .freebox-grid,
.freebox-page-content > .freebox-section-local,
.freebox-page-content > .freebox-booking-layout { max-width: none; }
.freebox-page-content h2 { margin: 60px 0 20px; font-size: clamp(31px,4vw,45px); }
.freebox-page-content h3 { margin: 34px 0 12px; font-size: clamp(24px,3vw,31px); }
.freebox-page-content p { margin: 0 0 1.25em; }
.freebox-page-content ul,
.freebox-page-content ol { margin: 0 0 1.5em; padding-left: 1.25em; }
.freebox-page-content table { width: 100%; border-collapse: collapse; margin: 30px 0; font-size: 15px; }
.freebox-page-content th,
.freebox-page-content td { padding: 14px 16px; border: 1px solid var(--fb-line); text-align: left; vertical-align: top; }
.freebox-page-content th { background: var(--fb-surface); font-weight: 800; }
.freebox-prose { max-width: 820px; }
.freebox-prose h2 { margin-top: 2em; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: clamp(30px,4vw,43px); line-height: 1.12; }
.freebox-prose h3 { margin-top: 1.7em; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 27px; line-height: 1.18; }
.freebox-prose p, .freebox-prose li { color: #354047; }
.freebox-prose blockquote { margin: 34px 0; padding: 20px 26px; border-left: 5px solid var(--fb-accent); background: var(--fb-paper); font-size: 19px; }
.freebox-article { padding-block: 68px 100px; }
.freebox-article__image { margin: 0 0 40px; overflow: hidden; border-radius: var(--fb-radius-lg); }
.freebox-inline-cta { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin-top: 60px; padding: 34px; color: var(--fb-white); background: var(--fb-ink); border-radius: var(--fb-radius); }
.freebox-inline-cta h2 { margin: 0 0 9px; font-size: 31px; }
.freebox-inline-cta p { margin: 0; color: rgba(255,255,255,.68); }

/* Generic page components */
.freebox-callout { margin: 28px 0; padding: 25px 28px; border-left: 5px solid var(--fb-accent); border-radius: 0 var(--fb-radius-sm) var(--fb-radius-sm) 0; background: var(--fb-paper); }
.freebox-callout--warning { border-color: var(--fb-red); background: #fff3f1; }
.freebox-callout--success { border-color: var(--fb-green); background: #eef8f1; }
.freebox-callout h3 { margin-top: 0; }
.freebox-check-list { display: grid; gap: 11px; padding: 0 !important; list-style: none; }
.freebox-check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; }
.freebox-check-list li::before { content: "✓"; display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; margin-top: 2px; color: var(--fb-ink); background: var(--fb-accent); border-radius: 50%; font-size: 13px; font-weight: 900; }
.freebox-table-wrap { max-width: none !important; overflow-x: auto; border: 1px solid var(--fb-line); border-radius: var(--fb-radius); }
.freebox-table-wrap table { min-width: 720px; margin: 0; border: 0; }
.freebox-table-wrap th:first-child,.freebox-table-wrap td:first-child { border-left: 0; }
.freebox-table-wrap th:last-child,.freebox-table-wrap td:last-child { border-right: 0; }
.freebox-table-wrap tr:first-child th { border-top: 0; }
.freebox-table-wrap tr:last-child td { border-bottom: 0; }
.freebox-page-cards { max-width: none !important; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; margin-block: 34px; }
.freebox-page-card { padding: 27px; border: 1px solid var(--fb-line); border-radius: var(--fb-radius); background: var(--fb-white); box-shadow: var(--fb-shadow-small); }
.freebox-page-card h3 { margin-top: 0; }
.freebox-page-card p:last-child { margin-bottom: 0; }
.freebox-stat-grid { max-width: none !important; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; margin: 36px 0; }
.freebox-stat { padding: 25px; color: var(--fb-white); background: var(--fb-ink); border-radius: var(--fb-radius); }
.freebox-stat strong { display: block; margin-bottom: 4px; color: var(--fb-accent); font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 38px; line-height: 1; }
.freebox-stat span { color: rgba(255,255,255,.68); font-size: 14px; }

/* Booking */
.freebox-booking-layout { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: 38px; align-items: start; }
.freebox-booking-card { padding: 34px; background: var(--fb-white); border: 1px solid var(--fb-line); border-radius: var(--fb-radius); box-shadow: var(--fb-shadow); }
.freebox-booking-card h2 { margin-top: 0; }
.freebox-booking-form { display: grid; gap: 20px; }
.freebox-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.freebox-field { display: grid; gap: 7px; }
.freebox-field--full { grid-column: 1 / -1; }
.freebox-field label { font-size: 14px; font-weight: 800; }
.freebox-field__required { color: var(--fb-red); }
.freebox-field input,
.freebox-field textarea,
.freebox-field select {
    width: 100%;
    min-height: 50px;
    padding: 11px 13px;
    color: var(--fb-ink);
    background: var(--fb-white);
    border: 1px solid #bec6cb;
    border-radius: 8px;
    box-shadow: inset 0 1px 2px rgba(17,25,31,.04);
    transition: border-color var(--fb-transition), box-shadow var(--fb-transition);
}
.freebox-field textarea { min-height: 135px; resize: vertical; }
.freebox-field input:focus,
.freebox-field textarea:focus,
.freebox-field select:focus { border-color: var(--fb-blue); outline: 0; box-shadow: 0 0 0 3px rgba(36,77,143,.13); }
.freebox-field [aria-invalid="true"] { border-color: var(--fb-red); }
.freebox-field__help { color: var(--fb-muted); font-size: 12px; }
.freebox-consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; color: var(--fb-muted); font-size: 13px; }
.freebox-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--fb-accent-dark); }
.freebox-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.freebox-form-status { display: none; padding: 13px 15px; border-radius: 8px; font-size: 14px; }
.freebox-form-status.is-visible { display: block; }
.freebox-form-status.is-success { color: #174926; background: #e5f5ea; border: 1px solid #a6d7b4; }
.freebox-form-status.is-error { color: #6a201a; background: #fff0ee; border: 1px solid #e5b0aa; }
.freebox-booking-side { display: grid; gap: 20px; }
.freebox-contact-channel { display: flex; align-items: center; gap: 15px; padding: 18px; color: var(--fb-ink); background: var(--fb-paper); border: 1px solid var(--fb-line); border-radius: 10px; text-decoration: none; }
.freebox-contact-channel:hover { color: var(--fb-ink); border-color: var(--fb-accent); background: #fff8e7; }
.freebox-contact-channel .freebox-icon { width: 28px; color: var(--fb-accent-dark); }
.freebox-contact-channel strong { display: block; }
.freebox-contact-channel span { display: block; color: var(--fb-muted); font-size: 13px; }

/* Contacts */
.freebox-contact-grid { max-width: none !important; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; margin: 35px 0; }
.freebox-contact-panel { padding: 30px; border: 1px solid var(--fb-line); border-radius: var(--fb-radius); background: var(--fb-paper); }
.freebox-contact-panel h2,.freebox-contact-panel h3 { margin-top: 0; }
.freebox-contact-panel address { font-style: normal; }
.freebox-map-placeholder { min-height: 360px; display: flex; align-items: center; justify-content: center; padding: 36px; color: var(--fb-white); background: linear-gradient(135deg,var(--fb-blue),var(--fb-ink)); border-radius: var(--fb-radius); text-align: center; }
.freebox-map-placeholder .freebox-icon { width: 50px; height: 50px; color: var(--fb-accent); }

/* Blog */
.freebox-listing { padding-block: 70px 100px; }
.freebox-post-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.freebox-post-card { overflow: hidden; background: var(--fb-white); border: 1px solid var(--fb-line); border-radius: var(--fb-radius); box-shadow: var(--fb-shadow-small); }
.freebox-post-card__image { display: block; color: var(--fb-white); background: var(--fb-ink); text-decoration: none; }
.freebox-post-card__image img { display: block; width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.freebox-post-card__placeholder { min-height: 190px; display: flex; align-items: center; justify-content: center; }
.freebox-post-card__placeholder .freebox-icon { width: 70px; height: 70px; color: var(--fb-accent); }
.freebox-post-card__body { padding: 26px; }
.freebox-post-card__meta { margin: 0 0 9px; color: var(--fb-muted); font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.freebox-post-card h2 { margin: 0 0 12px; font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 27px; line-height: 1.12; }
.freebox-post-card h2 a { text-decoration: none; }
.freebox-post-card p { color: var(--fb-muted); font-size: 15px; }
.navigation.pagination { margin-top: 42px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: inline-flex; min-width: 42px; height: 42px; align-items: center; justify-content: center; padding: 0 10px; border: 1px solid var(--fb-line); border-radius: 7px; text-decoration: none; }
.page-numbers.current { color: var(--fb-ink); background: var(--fb-accent); border-color: var(--fb-accent); }
.freebox-search-result { max-width: 820px; padding-block: 24px; border-bottom: 1px solid var(--fb-line); }
.freebox-search-result h2 { margin: 0 0 10px; }

/* Footer */
.freebox-footer { padding-top: 70px; color: rgba(255,255,255,.74); background: #012839; }
.freebox-footer__grid { display: grid; grid-template-columns: 1.5fr .85fr .85fr 1fr; gap: 48px; padding-bottom: 56px; }
.freebox-footer__brand p { max-width: 420px; margin: 22px 0; }
.freebox-footer__title { margin: 4px 0 17px; color: var(--fb-white); font-family: "Roboto Condensed", "Arial Narrow", sans-serif; font-size: 21px; }
.freebox-footer ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.freebox-footer a { color: inherit; text-decoration: none; }
.freebox-footer a:hover { color: var(--fb-accent); }
.freebox-footer address { font-style: normal; }
.freebox-footer address p { margin: 0 0 9px; }
.freebox-socials { display: flex; flex-wrap: wrap; gap: 9px; }
.freebox-socials a { padding: 7px 10px; color: var(--fb-white); background: rgba(255,255,255,.07); border-radius: 6px; font-size: 13px; font-weight: 700; }
.freebox-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.09); font-size: 13px; }
.freebox-footer__bottom p { margin: 0; }
.freebox-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.freebox-mobile-actions { display: none; }

/* Cookie banner */
.freebox-cookie { position: fixed; z-index: 5000; right: 20px; bottom: 20px; width: min(430px,calc(100% - 40px)); padding: 22px; color: var(--fb-white); background: var(--fb-ink); border: 1px solid rgba(255,255,255,.12); border-radius: var(--fb-radius); box-shadow: var(--fb-shadow); }
.freebox-cookie[hidden] { display: none; }
.freebox-cookie p { margin: 0 0 15px; color: rgba(255,255,255,.76); font-size: 13px; }
.freebox-cookie__actions { display: flex; gap: 10px; }

/* Error */
.freebox-error-page { padding-block: 100px 130px; text-align: center; }
.freebox-error-page__code { margin: 0; color: var(--fb-accent); font-family: "Roboto Condensed", "Arial Narrow",sans-serif; font-size: clamp(100px,20vw,220px); font-weight: 900; line-height: .8; }
.freebox-error-page h1 { margin: 28px 0 12px; font-size: 48px; }
.freebox-error-page p { max-width: 650px; margin: 0 auto 26px; color: var(--fb-muted); }
.freebox-error-page .freebox-button-row { justify-content: center; }

/* WordPress cleanup */
.ast-container, .site-content .ast-container { max-width: none; padding: 0; }
#primary { width: 100%; margin: 0; }
.site-content { background: transparent; }
.entry-content { margin: 0; }
.entry-content > *:last-child { margin-bottom: 0; }

@media (max-width: 1180px) {
    .freebox-header__inner { gap: 18px; }
    .freebox-nav__list { gap: 17px; }
    .freebox-nav__list a { font-size: 14px; }
    .freebox-header__phone span { display: none; }
    .freebox-trust-item { padding: 20px; }
    .freebox-footer__grid { grid-template-columns: 1.3fr repeat(3,1fr); gap: 30px; }
}

@media (max-width: 980px) {
    :root { --fb-header: 70px; }
    .freebox-shell { width: min(var(--fb-shell), calc(100% - 36px)); }
    .freebox-header__inner { grid-template-columns: auto 1fr auto; }
    .freebox-logo { width: 195px; }
    .freebox-menu-toggle { display: inline-flex; justify-self: end; grid-column: 3; grid-row: 1; }
    .freebox-header__actions { grid-column: 2; grid-row: 1; justify-self: end; }
    .freebox-header__phone { display: none; }
    .freebox-header__actions .freebox-button { display: none; }
    .freebox-nav { position: fixed; top: var(--fb-header); left: 0; right: 0; bottom: 0; display: block; padding: 24px 18px 110px; visibility: hidden; opacity: 0; background: rgba(16,20,23,.99); overflow-y: auto; transform: translateY(-10px); transition: all var(--fb-transition); }
    .freebox-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
    .freebox-nav__list { display: grid; gap: 3px; max-width: 600px; margin-inline: auto; }
    .freebox-nav__list a { display: flex; min-height: 52px; padding: 9px 12px; font-size: 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .freebox-nav__list .sub-menu { position: static; min-width: 0; padding: 0 0 6px 18px; visibility: visible; opacity: 1; transform: none; border: 0; box-shadow: none; background: transparent; }
    .freebox-nav__list .sub-menu a { min-height: 42px; font-size: 15px; }
    .freebox-hero { min-height: 720px; }
    .freebox-hero__inner { grid-template-columns: 1fr; padding-block: 70px 110px; }
    .freebox-hero__badge { display: none; }
    .freebox-hero__media::before { background: linear-gradient(90deg,rgba(1,40,57,.97),rgba(1,40,57,.82)); }
    .freebox-trust-bar__inner { grid-template-columns: repeat(2,1fr); }
    .freebox-trust-item:nth-child(2) { border-right: 0; }
    .freebox-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--fb-line); }
    .freebox-section { padding-block: 82px; }
    .freebox-grid--3,.freebox-page-cards,.freebox-post-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .freebox-grid--4,.freebox-stat-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .freebox-split { gap: 42px; }
    .freebox-steps { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 38px 24px; }
    .freebox-step::after { display: none; }
    .freebox-price-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
    .freebox-price-card--featured { transform: none; }
    .freebox-timeline { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .freebox-timeline::before { display: none; }
    .freebox-timeline__item { text-align: left; }
    .freebox-timeline__year { margin-bottom: 14px; border-color: var(--fb-paper); }
    .freebox-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .freebox-booking-layout { grid-template-columns: 1fr; }
    .freebox-cta-band__inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 720px) {
    body.freebox-site { font-size: 16px; padding-bottom: 66px; }
    .freebox-shell { width: calc(100% - 32px); }
    .freebox-logo { width: 170px; }
    .freebox-header__inner { gap: 10px; }
    .freebox-hero { min-height: auto; }
    .freebox-hero__media img { object-position: center; }
    .freebox-hero__media::before { background: linear-gradient(180deg,rgba(1,40,57,.96) 0%,rgba(1,40,57,.84) 58%,rgba(6,81,110,.72) 100%); }
    .freebox-hero__inner { padding-block: 58px 92px; }
    .freebox-display { font-size: clamp(42px,13vw,58px); }
    .freebox-hero__lead { font-size: 18px; }
    .freebox-hero__points { grid-template-columns: 1fr; gap: 9px; }
    .freebox-button-row { align-items: stretch; }
    .freebox-button-row .freebox-button { width: 100%; }
    .freebox-trust-bar { margin-top: -25px; }
    .freebox-trust-bar__inner { grid-template-columns: 1fr; }
    .freebox-trust-item { min-height: 85px; border-right: 0; border-bottom: 1px solid var(--fb-line); }
    .freebox-trust-item:last-child { border-bottom: 0; }
    .freebox-section { padding-block: 66px; }
    .freebox-section--compact { padding-block: 54px; }
    .freebox-section__head { display: block; margin-bottom: 34px; }
    .freebox-section__head .freebox-text-link { margin-top: 20px; }
    .freebox-grid--2,.freebox-grid--3,.freebox-grid--4,.freebox-page-cards,.freebox-stat-grid,.freebox-post-grid,.freebox-contact-grid { grid-template-columns: 1fr; }
    .freebox-split { grid-template-columns: 1fr; gap: 32px; }
    .freebox-split .freebox-media-frame { order: -1; }
    .freebox-scenario-card { min-height: 0; padding: 27px; }
    .freebox-steps { grid-template-columns: 1fr; }
    .freebox-price-card { padding: 28px; }
    .freebox-price-card__price strong { font-size: 48px; }
    .freebox-timeline { grid-template-columns: 1fr; }
    .freebox-timeline__item { display: grid; grid-template-columns: 70px 1fr; gap: 18px; }
    .freebox-timeline__year { width: 66px; min-width: 66px; height: 66px; border-width: 5px; }
    .freebox-mechanic__visual { min-height: 330px; }
    .freebox-page-hero { padding-block: 46px 49px; }
    .freebox-page-hero h1 { font-size: 43px; }
    .freebox-page-content { padding-block: 52px 78px; }
    .freebox-page-content h2 { margin-top: 45px; }
    .freebox-form-grid { grid-template-columns: 1fr; }
    .freebox-field--full { grid-column: auto; }
    .freebox-booking-card { padding: 24px; }
    .freebox-inline-cta { grid-template-columns: 1fr; padding: 26px; }
    .freebox-equipment-card { grid-template-columns: 52px 1fr; padding: 22px; }
    .freebox-equipment-card__icon { width: 52px; height: 52px; }
    .freebox-footer { padding-top: 55px; }
    .freebox-footer__grid { grid-template-columns: 1fr; gap: 35px; }
    .freebox-footer__bottom { display: grid; padding-bottom: 30px; }
    .freebox-footer__bottom nav { display: grid; gap: 8px; }
    .freebox-mobile-actions { position: fixed; z-index: 2000; left: 0; right: 0; bottom: 0; height: 66px; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; color: var(--fb-white); background: rgba(16,20,23,.98); border-top: 1px solid rgba(255,255,255,.12); box-shadow: 0 -8px 28px rgba(0,0,0,.2); }
    .freebox-mobile-actions a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--fb-white); font-size: 11px; font-weight: 700; text-decoration: none; }
    .freebox-mobile-actions a:first-child { color: var(--fb-ink); background: var(--fb-accent); }
    .freebox-mobile-actions .freebox-icon { width: 20px; height: 20px; }
    .freebox-cookie { bottom: 82px; }
    .freebox-error-page { padding-block: 75px 95px; }
}

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

@media print {
    .freebox-header,.freebox-footer,.freebox-mobile-actions,.freebox-cookie,.freebox-button,.freebox-staging-bar { display: none !important; }
    body.freebox-site { color: #000; background: #fff; font-size: 12pt; }
    .freebox-page-hero { color: #000; background: #fff; padding: 20px 0; }
    .freebox-page-content { padding: 0; }
    a { color: #000; text-decoration: none; }
}



/* Clean workshop standard */
.freebox-clean-standard {
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
    gap:34px;
    align-items:start;
    padding:36px;
    border:1px solid rgba(1,40,57,.14);
    border-left:6px solid var(--fb-blue);
    border-radius:var(--fb-radius-lg);
    background:linear-gradient(135deg,#f7f6f2 0%,#eef5f7 100%);
    box-shadow:var(--fb-shadow-small);
}
.freebox-clean-standard h2 { margin-top:.3rem; }
.freebox-clean-standard__rules { margin:0; padding:0; list-style:none; display:grid; gap:12px; }
.freebox-clean-standard__rules li { display:flex; gap:11px; align-items:flex-start; padding:12px 14px; border-radius:10px; background:#fff; border:1px solid rgba(1,40,57,.09); }
.freebox-clean-standard__rules li::before { content:'—'; color:var(--fb-blue); font-weight:900; }
@media (max-width:860px){ .freebox-clean-standard{grid-template-columns:1fr;padding:26px 22px;} }

/* Prelaunch mode */
.freebox-prelaunch-status { background:#f3a712; color:#012839; border-bottom:1px solid rgba(23,27,31,.18); }
.freebox-prelaunch-status__inner { display:flex; gap:12px 24px; align-items:center; justify-content:center; min-height:44px; padding-top:8px; padding-bottom:8px; font-size:14px; flex-wrap:wrap; }
.freebox-prelaunch-status__inner strong { font-weight:800; }
.freebox-prelaunch-card, .freebox-prelaunch-booking { max-width:1240px; margin:28px auto; padding:28px 32px; border:1px solid #d9dde0; border-left:5px solid #f3a712; border-radius:16px; background:#fffaf0; box-shadow:0 12px 32px rgba(23,27,31,.06); }
.freebox-prelaunch-card h2, .freebox-prelaunch-booking h2 { margin:.35rem 0 .6rem; }
.freebox-prelaunch-cta { display:inline-flex; align-items:center; min-height:44px; padding:10px 16px; border-radius:999px; background:#edf0f2; color:#4d555c; font-weight:700; cursor:not-allowed; }
.freebox-site--prelaunch .freebox-footer__contacts address p:empty { display:none; }
@media (max-width:760px){ .freebox-prelaunch-card,.freebox-prelaunch-booking{margin:20px 18px;padding:22px 20px}.freebox-prelaunch-status__inner{justify-content:flex-start} }
