/* ============================================================
   Beneflow Landing Page  (Hello Elementor child / ACF build)
   Adapted from the static reference. Content images are applied
   inline from ACF; only static UI assets are referenced here.
   Desktop-first. Breakpoints: 1440 / 1024 / 768 / 480
   ============================================================ */

/* ============================================================
   SF PRO DISPLAY  (self-hosted, assets/fonts/*.OTF)
   ============================================================ */
@font-face { font-family:"SF Pro Display"; font-style:normal; font-weight:400; font-display:swap; src:url("../fonts/SFPRODISPLAYREGULAR.OTF") format("opentype"); }
@font-face { font-family:"SF Pro Display"; font-style:normal; font-weight:500; font-display:swap; src:url("../fonts/SFPRODISPLAYMEDIUM.OTF") format("opentype"); }
@font-face { font-family:"SF Pro Display"; font-style:normal; font-weight:600; font-display:swap; src:url("../fonts/SFPRODISPLAYMEDIUM.OTF") format("opentype"); }
@font-face { font-family:"SF Pro Display"; font-style:normal; font-weight:700; font-display:swap; src:url("../fonts/SFPRODISPLAYBOLD.OTF") format("opentype"); }
@font-face { font-family:"SF Pro Display"; font-style:normal; font-weight:800; font-display:swap; src:url("../fonts/SFPRODISPLAYBOLD.OTF") format("opentype"); }
@font-face { font-family:"SF Pro Display"; font-style:italic; font-weight:100; font-display:swap; src:url("../fonts/SFPRODISPLAYTHINITALIC.OTF") format("opentype"); }
@font-face { font-family:"SF Pro Display"; font-style:italic; font-weight:200; font-display:swap; src:url("../fonts/SFPRODISPLAYULTRALIGHTITALIC.OTF") format("opentype"); }
@font-face { font-family:"SF Pro Display"; font-style:italic; font-weight:300; font-display:swap; src:url("../fonts/SFPRODISPLAYLIGHTITALIC.OTF") format("opentype"); }
@font-face { font-family:"SF Pro Display"; font-style:italic; font-weight:600; font-display:swap; src:url("../fonts/SFPRODISPLAYSEMIBOLDITALIC.OTF") format("opentype"); }
@font-face { font-family:"SF Pro Display"; font-style:italic; font-weight:800; font-display:swap; src:url("../fonts/SFPRODISPLAYHEAVYITALIC.OTF") format("opentype"); }
@font-face { font-family:"SF Pro Display"; font-style:italic; font-weight:900; font-display:swap; src:url("../fonts/SFPRODISPLAYBLACKITALIC.OTF") format("opentype"); }

/* ============================================================
   ROGUE SANS COND  (self-hosted, WP Font Library files)
   WordPress only auto-prints this font's @font-face when a block
   directly assigns it; neither the custom homepage template nor
   this stylesheet's usage triggers that, so it's declared here.
   ============================================================ */
@font-face { font-family:"Rogue Sans Cond"; font-style:normal; font-weight:300; font-display:swap; src:url("/beneflow/wp-content/uploads/fonts/fonnts.com-Rogue_Sans_Cond_Light.otf") format("opentype"); }
@font-face { font-family:"Rogue Sans Cond"; font-style:normal; font-weight:500; font-display:swap; src:url("/beneflow/wp-content/uploads/fonts/fonnts.com-Rogue_Sans_Cond_Medium.otf") format("opentype"); }
@font-face { font-family:"Rogue Sans Cond"; font-style:normal; font-weight:700; font-display:swap; src:url("/beneflow/wp-content/uploads/fonts/fonnts.com-Rogue_Sans_Cond_Bold.otf") format("opentype"); }

/* ============================================================
   THEME-STYLE GUARD
   Neutralise Elementor's global Theme Style (.elementor-kit-N button/h1/a…)
   which would otherwise repaint the hero. All rules scoped under .bf-page so
   they outrank single-class kit selectors. Loaded after the kit CSS.
   ============================================================ */
.bf-page button,
.bf-page input[type="button"],
.bf-page input[type="submit"] {
    background-color: transparent;
    background-image: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    font: inherit;
    color: inherit;
}
.bf-page a { color: inherit; }
.bf-page .btn { color: #fff; }
.bf-page .hero__title,
.bf-page .stats__number { font-family: var(--display); }
.bf-page .footer__title { font-family: "Rogue Sans Cond"; }
.bf-page .play-btn--yt   { background-image: url("../img/play-btn.png"); }
.bf-page .play-btn--blue { background-image: url("../img/play-btn-blue.png"); }
.bf-page .social { color: #fff; }
.bf-page .topbar__phone { color: var(--red); }

/* ---------- Tokens ---------- */
:root {
    --bg:        #f1f1f3;
    --white:     #ffffff;
    --ink:       #232429;
    --body:      #4a4d53;
    --blue:      #478cb6;
    --blue-dark: #3f7ea4;
    --red:       #c5352a;
    --red-dark:  #b22f25;
    --dark:      #000616;
    --water:     #4e89a9;
    --rule:      #cfd3d6;
    --hero-red:  #c5352a;

    --container: 1180px;
    --sans: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --display: "SF Pro Display", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Scoped reset (only inside the template wrapper) ---------- */
.bf-page *, .bf-page *::before, .bf-page *::after { box-sizing: border-box; }
.bf-page { margin: 0; padding: 0; }

.bf-page {
    font-family: var(--sans);
    color: var(--body);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;            /* guard against any horizontal overflow */
}
.bf-page img {max-width: 100%;display: block;}
.bf-page a { text-decoration: none; color: inherit; }
.bf-page ul { list-style: none; margin: 0; padding: 0; }
.bf-page h1, .bf-page h2, .bf-page h3, .bf-page p { margin: 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar { position: relative; z-index: 30; background: var(--white); height: 64px; }
.topbar__inner {
    max-width: 1400px; margin: 0 auto; height: 100%; padding: 0 32px;
    display: flex; align-items: center; justify-content: flex-end; gap: 28px;
}
.topbar__contact { font-size: 14px; color: var(--ink); letter-spacing: .2px; }
.topbar__phone { color: var(--red); font-weight: 700; }
.topbar__menu {
    background: none; border: 0; cursor: pointer; width: 32px; height: 24px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.topbar__menu span { display: block; height: 3px; width: 100%; background: var(--ink); border-radius: 2px; }

/* ============================================================
   OFF-CANVAS DRAWER (right side)
   ============================================================ */
.bf-drawer-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.45);
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.bf-drawer-overlay.is-open { opacity: 1; visibility: visible; }
.bf-drawer {
    position: fixed; top: 0; right: 0; z-index: 1001;
    height: 100%; width: 340px; max-width: 86vw;
    background: var(--white);
    box-shadow: -6px 0 28px rgba(0,0,0,.18);
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex; flex-direction: column;
    padding: 20px 26px 32px;
    overflow-y: auto;
}
.bf-drawer.is-open { transform: translateX(0); }
.bf-page .bf-drawer__close {
    align-self: flex-end;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink); cursor: pointer;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border: 0; border-radius: 6px;
}
.bf-page .bf-drawer__close:hover { color: var(--red); }
.bf-page .bf-drawer__close:focus { outline: none; }
.bf-page .bf-drawer__close:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.bf-drawer__nav { margin-top: 8px; }
.bf-menu { display: flex; flex-direction: column; }
.bf-menu li { margin: 0; }
.bf-menu a {
    display: block; padding: 14px 4px;
    font-size: 17px; font-weight: 600; color: var(--ink);
    border-bottom: 1px solid var(--rule);
    transition: color .15s ease;
}
.bf-menu a:hover, .bf-menu .current-menu-item > a { color: var(--red); }
.bf-menu .sub-menu { margin: 0 0 6px 14px; }
.bf-menu .sub-menu a { font-size: 15px; font-weight: 500; padding: 10px 4px; }
body.bf-drawer-open { overflow: hidden; }

/* ---------- Copy-link popup (Instagram / YouTube icons) ---------- */
.bf-copy { position: fixed; inset: 0; z-index: 1100; display: none; }
.bf-copy.is-open { display: block; }
.bf-copy__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.bf-copy__box {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    background: #fff; border-radius: 14px; padding: 30px 28px 26px;
    width: 460px; max-width: 90vw; box-shadow: 0 14px 44px rgba(0,0,0,.28);
}
.bf-page .bf-copy__close {
    position: absolute; top: 12px; right: 12px; width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink); cursor: pointer;
    background: transparent !important; background-image: none !important; box-shadow: none !important; border: 0;
}
.bf-page .bf-copy__close:hover { color: var(--red); }
.bf-copy__title { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 16px; }
.bf-copy__row { display: flex; gap: 10px; }
.bf-copy__input {
    flex: 1; min-width: 0; padding: 12px 16px;
    border: 1px solid var(--rule); border-radius: 30px;
    font-size: 14px; color: var(--body); background: #fff;
}
.bf-page .bf-copy__btn {
    flex: none; padding: 12px 24px; border-radius: 30px;
    background: var(--blue) !important; background-image: none !important;
    color: #fff; font-weight: 700; font-size: 14px; border: 0; cursor: pointer;
    white-space: nowrap; transition: background .15s ease;
}
.bf-page .bf-copy__btn:hover { background: var(--blue-dark) !important; }
.bf-page .bf-copy__btn.is-copied { background: #2e9e5b !important; }

/* ---------- Video lightbox (play buttons) ---------- */
.bf-video { position: fixed; inset: 0; z-index: 1200; display: none; }
.bf-video.is-open { display: block; }
.bf-video__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.85); }
.bf-video__box { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(960px, 92vw); }
.bf-video__frame { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; background: #000; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.bf-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.bf-page .bf-video__close {
    position: absolute; top: -46px; right: 0; width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; cursor: pointer;
    background: transparent !important; background-image: none !important; box-shadow: none !important; border: 0;
}
.bf-page .bf-video__close:hover { color: var(--red); }
@media (max-width: 768px) {
    .bf-video__close { top: -42px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 720px; overflow: visible; border-bottom: 6px solid var(--hero-red); }
/* keep the background image clipped to the hero even though the logo card may overhang */
.hero__bg { overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }


/* Floating logo card */
.logo-card {
    position: absolute; top: -34px; left: 32px; z-index: 40;
    width: 196px; height: 150px; background: var(--white); border-radius: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
/* Hero logo card — enlarged (footer card keeps the base size) */
.hero .logo-card {
    width: 196px; height: 150px; left: 32px;
    border-radius: 25px; box-shadow: none;
}
.hero .logo-card__img { max-width: 84%; max-height: 84%; }
.logo-card__mark { width: 96px; height: 72px; }
.logo-card__text { font-weight: 800; font-size: 22px; letter-spacing: 2px; color: var(--ink); }
.logo-card__text sup { font-size: 10px; top: -10px; }
.logo-card__img { width: auto; max-width: 84%; max-height: 84%; height: auto; object-fit: contain; }

/* Social rail */
.social-rail { position: absolute; right: 0; top: 180px; z-index: 25; display: flex; flex-direction: column; }
.social { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; color: #fff; transition: filter .2s ease; }
.social svg { width: 24px; height: 24px; }
.social:hover { filter: brightness(1.12); }
.social--fb { background: #3b5998; }
.social--ig { background: #c13584; }
.social--in { background: #2867b2; }
.social--yt { background: #e60000; }

/* Hero content */
.hero__content { position: relative; z-index: 10; max-width: var(--container); margin: 0 auto; padding: 300px 32px 90px; text-align: center; }
.hero__title {
    color: #fff; font-family: "Rogue Sans Cond" !important; font-style: italic; font-weight: 800;
    line-height: .92; text-transform: uppercase; text-shadow: 0 2px 14px rgba(0,0,0,.25); margin-bottom: 28px;
}
.hero__title-lg { display: block; font-size: 7rem; letter-spacing: 1px; }
.hero__title-md { display: block; font-size: 64px; letter-spacing: 1px; margin-bottom: 25px; }
.hero__caption { color: #fff; font-size: 14px; margin-top: 14px; line-height: 1.3; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hero__caption small { font-size: 12px; }

/* ---------- Play buttons ---------- */
.play-btn {
    border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
    transition: transform .2s ease, filter .2s ease; background-color: transparent;
    background-repeat: no-repeat; background-position: center; background-size: contain;
}
.play-btn svg { display: none; }
.play-btn:hover { transform: scale(1.06); }
.play-btn--yt { width: 74px; height: 52px; background-image: url("../img/play-btn.png"); margin: 0 auto; }
.play-btn--blue { width: 84px; height: 56px; background-image: url("../img/play-btn-blue.png"); }

/* ============================================================
   INTRO
   ============================================================ */
.intro { background: var(--bg); }
.intro__inner { max-width: 660px; margin: 0 auto; padding: 86px 24px 80px; text-align: center; }
.intro__title { font-size: 27px; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: 26px; text-transform: uppercase; letter-spacing: .3px; }
.intro p { margin-top: 2rem; margin-bottom: 18px; font-size: 16px; }
.intro__lead { font-weight: 600; color: var(--ink); margin-top: 8px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; min-width: 188px;
    padding: 18px 26px; font-size: 13px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: #fff; transition: background .2s ease;
}
.btn--blue { background: var(--blue); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--red  { background: var(--red); }
.btn--red:hover  { background: var(--red-dark); }
.btn-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.btn-row--center { justify-content: center; }

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg); }
.split--top-border { border-top: 5px solid var(--blue); }
.split__media { min-height: 500px; background-size: cover; background-position: center; }
.split__media__comparison { min-height: 600px; background-size: cover; background-position: center; background-repeat:none; }
.split__text { padding: 70px 130px 70px 60px; display: flex; flex-direction: column; justify-content: center; }
.split__text h3 { font-size: 22px; font-weight: 600; color: var(--ink); line-height: 1.35; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 22px; }
.split__text p { margin-bottom: 18px; }
.split--reverse .split__text { padding: 70px 60px 70px 130px; }

/* inline video (testimonial) */
.video-inline { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.video-inline__caption { font-size: 13px; line-height: 1.4; color: var(--ink); }
.video-inline__caption a { text-decoration: underline; }

/* ---------- Section media position/size modifiers (image set inline) ---------- */
.media--aerial   { background-position: center center; }
.media--portrait { background-position: center top; }
.media--building { background-position: center center; background-size: cover; }
.media--product  { background-position: center center; background-size: contain; background-repeat: no-repeat; }
.media--people   { background-position: center center; }
.split--product { background: var(--bg); position: relative; }
.split--product .split__media { background-color: var(--white); position: relative; }
/* Device photo breaks out of the white panel and overlaps left into the text area */
.split--product .split__media--product { overflow: visible; }
.product-float {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 85%;
    max-width: none;
    height: auto;
    z-index: 3;
    pointer-events: none;
}
/* ============================================================
   ICON FEATURES
   ============================================================ */
.features { background: var(--white); }
.features__inner { max-width: var(--container); margin: 0 auto; padding: 56px 24px; display: flex; justify-content: center; }
.features__image { width: 100%; max-width: 980px; height: auto; }

/* ============================================================
   STATISTICS
   ============================================================ */
.stats { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg); }
.stats__text { padding: 70px 130px 70px 60px; display: flex; flex-direction: column; justify-content: center; }
.stats__text h3 { font-size: 22px; font-weight: 600; color: var(--ink); text-transform: uppercase; line-height: 1.35; letter-spacing: .3px; margin-bottom: 22px; }
.stats__text p { margin-bottom: 18px; }
.stats__figure { background: var(--dark); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 40px; min-height: 500px; }
.stats__number { font-family: var(--display); font-weight: 800; font-style: normal; font-size: 130px; line-height: 1; letter-spacing: -2px; }
.stats__label { color: var(--blue); font-weight: 700; letter-spacing: 1px; font-size: 19px; margin-top: 30px; text-transform: uppercase; }
.stats__sub { font-size: 22px; margin-top: 10px; color: #e6eef3; }

/* ============================================================
   PIPE DIAGRAM
   ============================================================ */
.split--diagram .split__media {
    background-color: var(--white); background-size: contain; background-position: center center;
    background-repeat: no-repeat; display: flex; align-items: center; justify-content: center;
    padding: 40px 30px; min-height: 600px;
}
.pipe-svg { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; background-size: cover; background-position: center center; color: #fff; overflow: visible; }
/* white + gray layered cap at the top of the footer (logo card overlaps it) */
.footer__cap { position: relative; height: 80px; background: var(--white); z-index: 1; display:none;}
.footer__cap::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 40px; background: var(--bg); }
.footer__inner { max-width: 1400px; margin: 0 auto; padding: 0 40px 60px; position: relative; text-align: center; }
/* footer logo card: overlaps the cap, sits on top, fully visible */
.logo-card--footer { position: relative; z-index: 6; margin: -1px auto 0; box-shadow: 0 0 0 rgba(0, 0, 0, 0); }
.footer__title { font-family: "Rogue Sans Cond"; font-style: italic; font-weight: 800; text-transform: uppercase; line-height: .92; margin: 8px 0 30px; text-shadow: 0 2px 10px rgba(0,0,0,.2); }
.footer__title-lg { display: block; font-size: 58px; letter-spacing: 1px; }
.footer__title-md { display: block; font-size: 38px; letter-spacing: 1px; }
.footer__info { font-style: normal; font-size: 15px; line-height: 1.7; }
.footer__info p { margin-bottom: 18px; }
.footer__info a:hover { text-decoration: underline; }
.footer__badges { position: absolute; right: 180px; bottom: 40px; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer__badge-image { width: 150px; height: auto; }
.footer__certs { position: absolute; right: 40px; bottom: 40px; width: 120px; background: #fff; padding: 14px 12px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer__cert-image { width: 100%; height: auto; }
.footer__cert-image--gs { width: 88%; }
.footer__cert-image--iso { width: 82%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1440px) {
    .hero__title-lg { font-size: 88px; }
    .hero__title-md { font-size: 58px; }
    .stats__number  { font-size: 116px; }
}
@media (max-width: 1024px) {
    .split__text, .split--reverse .split__text, .stats__text { padding: 56px 48px; }
    .hero__title-lg { font-size: 70px; }
    .hero__title-md { font-size: 46px; }
    .hero__content { padding-top: 260px; }
    .features__image { max-width: 900px; }
    .stats__number { font-size: 96px; }
    .footer__badges { right: 200px; }
}
@media (max-width: 768px) {
    .bf-page img { max-width: 100%; }   /* no image overflow on phones */
    .topbar__contact { font-size: 12px; }
    .logo-card { width: 150px; height: 116px; left: 20px; top: -28px; }
    .hero .logo-card { width: 120px; height: 94px; left: 20px; }
    .logo-card__mark { width: 72px; height: 54px; }
    .logo-card__text { font-size: 17px; }
    .hero { min-height: 540px; }
    .hero__content { padding: 180px 20px 80px; }
    .hero__title-lg { font-size: 52px; margin-bottom: 10px; }
    .hero__title-md { font-size: 31px; margin-bottom: 15px; }
    .hero__title { margin-bottom: 46px;  margin-bottom: 10px;}
    .play-btn--yt { margin-bottom: 6px; margin-bottom: 15px;}
    .hero__caption { margin-top: 22px; font-size: 15px; }
    .intro__inner { padding: 60px 20px; }
    .intro__title { font-size: 22px; }
    .split, .stats { grid-template-columns: 1fr; }
    .split--reverse .split__text { order: 2; }
    .split--reverse .split__media { order: 1; }
    .split__media, .split--diagram .split__media { min-height: 320px; }
    .split__text, .split--reverse .split__text, .stats__text { padding: 48px 28px; }
    /* product device: no overflow when stacked */
    .split--product .split__media--product { display: flex; align-items: center; justify-content: center; padding: 24px; }
    .product-float { position: static; transform: none; width: 100%; right: auto; }
    .stats__figure { min-height: 360px; padding: 60px 24px; }
    .stats__number { font-size: 90px; }
    .features__inner { padding: 44px 20px; }
    .features__image { max-width: 100%; }
    /* footer: smaller logo card, and badges/certs in normal centered flow */
    .footer__cap { height: 58px; }
    .logo-card--footer { position: relative; left: auto; top: auto; width: 138px; height: 106px; margin: -15px auto 0; }
    .footer__inner { padding-bottom: 56px; }
    .footer__title-lg { font-size: 44px; }
    .footer__title-md { font-size: 28px; }
    .footer__badges {
        position: static; right: auto; bottom: auto; transform: none;
        flex-direction: column; align-items: center; gap: 10px; margin: 30px auto 0;
    }
    .footer__badge-image { width: 196px; }
    .footer__certs {
        position: static; right: auto; bottom: auto; transform: none;
        flex-direction: row; align-items: center; justify-content: center;
        width: -moz-max-content; width: max-content; max-width: 100%;
        gap: 16px; margin: 20px auto 0;
    }
    .footer__cert-image { width: auto; height: 52px; }
    .footer__cert-image--gs, .footer__cert-image--iso { width: auto; height: 52px; }
}
@media (max-width: 480px) {
    .topbar__inner { padding: 0 16px; gap: 14px; }
    .topbar__contact { font-size: 11px; }
    .hero .logo-card { width: 108px; height: 84px; }
    .hero__title-lg { font-size: 40px; }
    .hero__title-md { font-size: 23px; }
    .btn { min-width: 100%; }
    .btn-row { gap: 14px; }
    .btn-row--center { flex-direction: column; align-items: center; }
    .features__inner { padding: 36px 16px; }
    .stats__number { font-size: 68px; }
    .stats__label { font-size: 16px; }
    .split__text h3, .stats__text h3 { font-size: 19px; }
}

/* Full-HD (≈1920×1080) — slightly smaller image cap */
@media (min-width: 1900px) {
    .bf-page img { max-width: 115%; }
}
