/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 584:2 Unexpected "<"

**/
<style>
    :root {
      --primary: #0E202A;
      --primary-mid: #162e3d;
      --primary-dark: #091820;
      --secondary: #F0F7FD;
      --white: #ffffff;
      --accent: #4BAAD3;
      --accent-hover: #3a9abf;
      --accent-light: #d0edf8;
      --gray-100: #f2f6f9;
      --gray-200: #e0e8ef;
      --gray-300: #b0c4d0;
      --gray-500: #6a8898;
      --gray-700: #2d4250;
      --green: #2e8b57;
      --green-light: #e3f5ec;
      --red-sale: #c0392b;
      --shadow-soft: 0 4px 24px rgba(14,32,42,0.08);
      --shadow-mid: 0 8px 40px rgba(14,32,42,0.14);
      --radius: 12px;
      --radius-lg: 18px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Sora', sans-serif;
      /* color: #0E202A; */
      overflow-x: hidden;
    }

    /* STICKY HEADER */
    .filbloc_sticky-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      background: rgba(14,32,42,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(75,170,211,0.2);
      padding: 12px 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      transform: translateY(-100%); transition: transform 0.35s ease;
    }
    .filbloc_sticky-header.filbloc_visible { transform: translateY(0); }
    .filbloc_sticky-logo { font-size: 1.1rem; font-weight: 800; color: #4BAAD3; letter-spacing: 0.03em; flex-shrink: 0; }
    .filbloc_sticky-actions { display: flex; gap: 8px; flex-shrink: 0; }
    .filbloc_sticky-btn {
      padding: 8px 16px; border-radius: 8px; font-family: 'Sora', sans-serif;
      font-size: 0.76rem; font-weight: 600; cursor: pointer; border: none;
      text-decoration: none; letter-spacing: 0.02em; transition: all 0.2s ease; white-space: nowrap; display: inline-block;
    }
    .filbloc_sticky-btn.filbloc_primary { background: #4BAAD3; color: #FFFFFF; }
    .filbloc_sticky-btn.filbloc_primary:hover { background: #3a9abf; }
    .filbloc_sticky-btn.filbloc_outline { background: transparent; color: #4BAAD3; border: 1.5px solid #4BAAD3; }
    .filbloc_sticky-btn.filbloc_outline:hover { background: rgba(75,170,211,0.1); }

    /* HERO */
    .filbloc_hero {
      min-height: 100vh; background: #0E202A;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; position: relative; overflow: hidden;
    }
    .hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@keyframes floatImg {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
.hero-img-main {
    width: 92%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
    animation: floatImg 5s ease-in-out infinite;
}
    .filbloc_hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(75,170,211,0.12) 0%, transparent 70%),
                  radial-gradient(ellipse 40% 60% at 90% 20%, rgba(75,170,211,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .filbloc_hero-grid-lines {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(75,170,211,0.04) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(75,170,211,0.04) 1px, transparent 1px);
      background-size: 60px 60px; pointer-events: none;
    }
    .filbloc_hero-content { padding: 120px 60px 80px 80px; position: relative; z-index: 2; }
    .filbloc_hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(75,170,211,0.12); border: 1px solid rgba(75,170,211,0.3);
      border-radius: 100px; padding: 6px 16px; font-size: 12px; font-weight: 600;
      color: #4BAAD3; letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 28px; animation: fadeUp 0.6s ease both;
    }
    .filbloc_hero-tag::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: #4BAAD3; animation: pulse 2s ease infinite;
    }
    @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.7); } }
    .filbloc_hero h1 {
      font-size: 40px; font-weight: 800; color: #FFFFFF;
      line-height: 1.12; margin-bottom: 24px; animation: fadeUp 0.6s 0.1s ease both;
    }
    .filbloc_hero h1 span { color: #4BAAD3; }
    .filbloc_hero-sub {
      font-size: 15px; color: #b0c4d0; line-height: 1.75;
      max-width: 520px; margin-bottom: 40px; animation: fadeUp 0.6s 0.2s ease both;
    }
    .filbloc_hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
    .filbloc_btn-primary {
      background: #4BAAD3; color: #FFFFFF;
      padding: 15px 34px; border-radius: 12px;
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px;
      text-decoration: none; letter-spacing: 0.02em; transition: all 0.25s ease;
      box-shadow: 0 4px 20px rgba(75,170,211,0.35); border: none; cursor: pointer; display: inline-block;
    }
    .filbloc_btn-primary:hover { background: #3a9abf; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(75,170,211,0.45); }
    .filbloc_btn-outline {
      background: transparent; color: #FFFFFF;
      padding: 14px 34px; border-radius: 12px;
      font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px;
      text-decoration: none; border: 1.5px solid rgba(255,255,255,0.3);
      transition: all 0.25s ease; cursor: pointer; display: inline-block;
    }
    .filbloc_btn-outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.6); }
    .filbloc_hero-image-wrap { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; }
    .filbloc_hero-image-placeholder {
      width: 85%; height: 70%;
      background: linear-gradient(135deg, rgba(75,170,211,0.15), rgba(14,32,42,0.3));
      border: 1px solid rgba(75,170,211,0.2); border-radius: 18px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: rgba(75,170,211,0.5); font-size: 0.78rem; letter-spacing: 0.08em;
      text-transform: uppercase; gap: 12px; position: relative; overflow: hidden;
    }
    .filbloc_hero-image-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

    /* TRUST BAR */
    .filbloc_trust-bar {
      background: #162e3d; border-top: 1px solid rgba(75,170,211,0.15);
      border-bottom: 1px solid rgba(75,170,211,0.15);
      padding: 16px 40px; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
    }
    .filbloc_trust-item {
      display: flex; align-items: center; gap: 8px; padding: 8px 24px;
      color: #b0c4d0; font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
      border-right: 1px solid rgba(75,170,211,0.15);
    }
    .filbloc_trust-item:last-child { border-right: none; }
    .filbloc_trust-item svg { color: #4BAAD3; flex-shrink: 0; }
    @keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

    /* SECTIONS */
    section.filbloc_section { padding: 100px 0; }
    section#filbloc_hero {
    padding-top: 0;
}
    .filbloc_container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
    .filbloc_section-label {
      font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
      color: #4BAAD3; margin-bottom: 14px; display: block; font-weight: 600;
    }
    .filbloc_section-title {
      font-size: 40px; font-weight: 700; color: #0E202A; line-height: 1.18; margin-bottom: 18px;
    }
    .filbloc_section-title.filbloc_light { color: #FFFFFF; }
    .filbloc_section-sub { font-size: 15px; color: #6a8898; max-width: 620px; line-height: 1.75; }
    .filbloc_section-sub.filbloc_light { color: rgba(255,255,255,0.65); }

    /* SOCIAL PROOF */
    .filbloc_social-proof { background: #F0F7FD; }
    .filbloc_reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 52px; }
    .filbloc_review-card {
      background: #FFFFFF; border-radius: 18px; padding: 32px;
      box-shadow: 0 4px 24px rgba(14,32,42,0.08); border: 1px solid rgba(75,170,211,0.12);
      position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .filbloc_review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(14,32,42,0.14); }
    .filbloc_review-card::before {
      content: '"'; position: absolute; top: 20px; right: 28px;
      font-size: 5rem; color: #4BAAD3; opacity: 0.15; line-height: 1;
    }
    .filbloc_stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
    .filbloc_review-text { font-size: 15px; color: #2d4250; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
    .filbloc_reviewer { font-size: 0.78rem; font-weight: 600; color: #6a8898; text-transform: uppercase; letter-spacing: 0.06em; }
    .filbloc_reviewer span { color: #4BAAD3; }

    /* WHY SWITCH */
    .filbloc_why-switch { background: #FFFFFF; }
    .filbloc_value-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 52px; }
    .filbloc_value-card {
      padding: 40px 32px; border-radius: 18px;
      border: 1px solid #e0e8ef; background: #FFFFFF;
      box-shadow: 0 4px 24px rgba(14,32,42,0.08); transition: all 0.3s ease; position: relative; overflow: hidden;
    }
    .filbloc_value-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #4BAAD3, #d0edf8);
      transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
    }
    .filbloc_value-card:hover::before { transform: scaleX(1); }
    .filbloc_value-card:hover { transform: translateY(-6px); box-shadow: 0 8px 40px rgba(14,32,42,0.14); }
    .filbloc_card-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: linear-gradient(135deg, #0E202A, #162e3d);
      display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
    }
    .filbloc_card-icon svg { width: 24px; height: 24px; color: #4BAAD3; }
    .filbloc_card-num { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #4BAAD3; margin-bottom: 14px; }
    .filbloc_value-card h3 { font-size: 18px; font-weight: 700; color: #0E202A; margin-bottom: 14px; line-height: 1.4; }
    .filbloc_value-card p { font-size: 15px; color: #6a8898; line-height: 1.75; }

    /* PRODUCTS */
    .filbloc_products-section { background: #F0F7FD; }
    .filbloc_products-intro {
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
    }
    .filbloc_free-ship-badge {
      background: #e3f5ec; color: #2e8b57;
      border: 1px solid rgba(46,139,87,0.2); border-radius: 100px;
      padding: 8px 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap;
    }
    .filbloc_products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
    .filbloc_product-card {
      background: #FFFFFF; border-radius: 18px; overflow: hidden;
      box-shadow: 0 4px 24px rgba(14,32,42,0.08); border: 1px solid rgba(75,170,211,0.12);
      transition: all 0.3s ease;
    }
    .filbloc_product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 40px rgba(14,32,42,0.14); }
    .filbloc_product-img {
      height: 240px; background: linear-gradient(135deg, #F0F7FD, #e0ecf8);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      position: relative; gap: 10px;
    }
    .filbloc_product-img svg { width: 56px; height: 56px; color: #b0c4d0; }
    .filbloc_product-img-label { font-size: 0.65rem; letter-spacing: 0.1em; color: #b0c4d0; text-transform: uppercase; }
    .filbloc_badge-vet {
      position: absolute; top: 16px; left: 16px; background: #0E202A;
      color: #4BAAD3; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em;
      text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
    }
    .filbloc_badge-off {
      position: absolute; top: 16px; right: 16px; background: #c0392b;
      color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
      padding: 4px 12px; border-radius: 100px;
    }
    .filbloc_product-info { padding: 28px; }
    .filbloc_product-info h3 { font-size: 0.88rem; font-weight: 600; color: #0E202A; line-height: 1.5; margin-bottom: 18px; }
    .filbloc_pricing { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
    .filbloc_price-sale { font-size: 1.6rem; font-weight: 700; color: #2e8b57; }
    .filbloc_price-reg { font-size: 0.92rem; color: #b0c4d0; text-decoration: line-through; }
    .filbloc_product-btns { display: flex; gap: 10px; }
    .filbloc_btn-cart {
      flex: 1; background: #0E202A; color: #FFFFFF; border: none;
      border-radius: 12px; padding: 12px 16px; font-family: 'Sora', sans-serif;
      font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; letter-spacing: 0.02em;
    }
    .filbloc_btn-cart:hover { background: #162e3d; }
    .filbloc_btn-sample {
      flex: 1; background: transparent; color: #0E202A;
      border: 1.5px solid #b0c4d0; border-radius: 12px; padding: 12px 16px;
      font-family: 'Sora', sans-serif; font-size: 0.82rem; font-weight: 600;
      cursor: pointer; transition: all 0.2s ease; letter-spacing: 0.02em;
    }
    .filbloc_btn-sample:hover { border-color: #4BAAD3; color: #4BAAD3; }

    /* VIDEO SECTION */
    .filbloc_video-section { background: #0E202A; }
    .filbloc_video-section .filbloc_section-title { color: #FFFFFF; }
    .filbloc_video-section .filbloc_section-sub { color: rgba(255,255,255,0.6); }
    .filbloc_video-intro { margin-bottom: 52px; }
    .filbloc_video-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
    .filbloc_video-main-wrap {
      position: relative; border-radius: 18px; overflow: hidden;
      background: #000; aspect-ratio: 16/9;
      box-shadow: 0 16px 60px rgba(0,0,0,0.5); border: 1px solid rgba(75,170,211,0.2);
    }
    .filbloc_video-main-wrap video {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .filbloc_video-placeholder {
      width: 100%; height: 100%; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 16px;
      background: linear-gradient(135deg, rgba(75,170,211,0.12), rgba(14,32,42,0.8));
      cursor: pointer;
    }
    .filbloc_play-btn {
      width: 72px; height: 72px; background: #4BAAD3; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s ease; box-shadow: 0 4px 30px rgba(75,170,211,0.5);
    }
    .filbloc_play-btn:hover { transform: scale(1.1); box-shadow: 0 8px 40px rgba(75,170,211,0.6); }
    .filbloc_play-btn svg { width: 28px; height: 28px; color: #FFFFFF; margin-left: 4px; }
    .filbloc_video-placeholder-label {
      font-size: 0.8rem; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase;
    }
    .filbloc_video-upload-zone {
      border: 2px dashed rgba(75,170,211,0.3); border-radius: 18px;
      padding: 28px; display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 12px; cursor: pointer; transition: all 0.3s ease;
      background: rgba(75,170,211,0.03); aspect-ratio: 16/9;
    }
    .filbloc_video-upload-zone:hover { border-color: #4BAAD3; background: rgba(75,170,211,0.07); }
    .filbloc_video-upload-zone input { display: none; }
    .filbloc_upload-icon {
      width: 56px; height: 56px; background: rgba(75,170,211,0.12);
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
    }
    .filbloc_upload-icon svg { width: 26px; height: 26px; color: #4BAAD3; }
    .filbloc_upload-title { font-size: 0.95rem; font-weight: 600; color: #FFFFFF; text-align: center; }
    .filbloc_upload-sub { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: center; }
    .filbloc_upload-btn {
      background: #4BAAD3; color: #FFFFFF; border: none; border-radius: 8px;
      padding: 10px 24px; font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 600;
      cursor: pointer; transition: all 0.2s ease; margin-top: 4px;
    }
    .filbloc_upload-btn:hover { background: #3a9abf; }
    .filbloc_video-features { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .filbloc_video-feature-item {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(75,170,211,0.12);
      border-radius: 12px; padding: 24px 20px; text-align: center; transition: all 0.3s ease;
    }
    .filbloc_video-feature-item:hover { background: rgba(75,170,211,0.07); border-color: rgba(75,170,211,0.25); }
    .filbloc_vf-icon { font-size: 30px; margin-bottom: 0px; }
    .filbloc_vf-title { font-size: 14px; font-weight: 700; color: #4BAAD3; margin-bottom: 6px; }
    .filbloc_vf-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }

    /* APPLICATIONS */
    .filbloc_applications { background: #0E202A; }
    .filbloc_applications .filbloc_section-sub { color: rgba(255,255,255,0.6); }
    .filbloc_apps-intro-wrap { margin-bottom: 60px; }
    .filbloc_apps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
    .filbloc_app-item {
      padding: 36px 30px; background: rgba(255,255,255,0.03);
      border: 1px solid rgba(75,170,211,0.1); transition: all 0.3s ease;
    }
    .filbloc_app-item:hover { background: rgba(75,170,211,0.06); border-color: rgba(75,170,211,0.25); }
    .filbloc_app-icon { font-size: 30px; margin-bottom: 8px; }
    .filbloc_app-item h3 { font-size: 16px; font-weight: 600; color: #4BAAD3; margin-bottom: 12px; }
    .filbloc_app-item p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; }

    /* COMPARISON */
    .filbloc_comparison { background: #fff; }
    .filbloc_compare-intro { margin-bottom: 52px; }
    .filbloc_compare-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
    .filbloc_compare-card {
      background: #FFFFFF; border-radius: 18px; padding: 36px;
      box-shadow: 0 4px 24px rgba(14,32,42,0.08); border: 1px solid rgba(75,170,211,0.12);
    }
    .filbloc_compare-card.filbloc_featured { border-color: #4BAAD3; border-width: 2px; position: relative; }
    .filbloc_featured-tag {
      position: absolute; top: -13px; left: 28px; background: #4BAAD3; color: #FFFFFF;
      font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 4px 14px; border-radius: 100px;
    }
    .filbloc_compare-card.featured {
    border: 2px solid #0E202A;
    position: relative;
}
    .filbloc_compare-card h3 { font-size: 18px; font-weight: 700; color: #0E202A; margin-bottom: 20px; }
    .filbloc_compare-point { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
    .filbloc_compare-point .filbloc_ico {
      width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 0.62rem; margin-top: 1px;
    }
    .filbloc_ico.filbloc_good { background: #e3f5ec; color: #2e8b57; }
    .filbloc_ico.filbloc_bad { background: #fdecea; color: #c0392b; }
    .filbloc_compare-point p { font-size: 15px; color: #2d4250; line-height: 1.65; }

    /* TECHNOLOGY */
    .filbloc_technology { background: #f0f7fd; }
    .filbloc_tech-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .filbloc_tech-image-wrap {
      background: linear-gradient(135deg, #F0F7FD, #e0ecf8);
      border-radius: 18px; height: 440px;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 12px; border: 1px solid rgba(75,170,211,0.2); color: #b0c4d0;
    }
    .tech-img-wrap {
      border-radius: 22px; overflow: hidden;
      box-shadow: 0 12px 48px rgba(14,32,42,0.22); position: relative;
    }
    .tech-img-wrap img { width: 100%; height: auto; display: block; }
    .filbloc_tech-image-wrap svg { width: 52px; height: 52px; }
    .filbloc_tech-image-wrap span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
    .filbloc_tech-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
    .filbloc_stat-box {
      padding: 22px 20px; border-radius: 12px; background: #fff;
      border: 1px solid #4baad3; transition: border-color 0.2s ease;
    }
    .filbloc_stat-box:hover { border-color: #4BAAD3; }
    .filbloc_stat-num { font-size: 22px; font-weight: 800; color: #0E202A; margin-bottom: 4px; }
    .filbloc_stat-num span { color: #4BAAD3; }
    .filbloc_stat-label { font-size: 12px; color: #6a8898; line-height: 1.4; }

    /* CLINICAL */
    .filbloc_clinical { background: #0E202A; }
    .filbloc_evidence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
    .filbloc_evidence-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(75,170,211,0.15);
      border-radius: 18px; padding: 28px; display: flex; gap: 16px;
      align-items: flex-start; transition: all 0.25s ease;
    }
    .filbloc_evidence-card:hover { background: rgba(75,170,211,0.06); border-color: rgba(75,170,211,0.35); }
    .filbloc_check-circle {
      width: 30px; height: 30px; border-radius: 50%;
      background: rgba(46,139,87,0.2); border: 1px solid rgba(46,139,87,0.4);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
    }
    .filbloc_check-circle svg { width: 14px; height: 14px; color: #5cb88a; }
    .filbloc_evidence-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.75; }
    .filbloc_evidence-card p strong { color: #d0edf8; display: block; margin-bottom: 4px; font-size: 12px; letter-spacing: 0.04em; }
    .filbloc_certs-row { display: flex; gap: 12px; margin-top: 48px; flex-wrap: wrap; }
    .filbloc_cert-pill {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(75,170,211,0.2);
      border-radius: 100px; padding: 10px 20px; font-size: 12px; font-weight: 600;
      color: #d0edf8; letter-spacing: 0.04em;
    }
    .filbloc_vet-cta {
      background: rgba(75,170,211,0.07); border: 1px solid rgba(75,170,211,0.2);
      border-radius: 18px; padding: 36px 40px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px; margin-top: 52px; flex-wrap: wrap;
    }
    .filbloc_vet-cta h3 { font-size: 16px; font-weight: 700; color: #FFFFFF; margin-bottom: 6px; }
    .filbloc_vet-cta p { font-size: 15px; color: rgba(255,255,255,0.6); }
    .filbloc_vet-cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

    /* SPECS */
    .filbloc_specs-section { background: #f2f6f9; }
    .filbloc_specs-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
      border-radius: 18px; overflow: hidden;
      border: 1px solid rgba(75,170,211,0.15); margin-top: 52px;
    }
    .filbloc_spec-item {
      padding: 24px 28px; background: #FFFFFF;
      border-right: 1px solid #f2f6f9; border-bottom: 1px solid #f2f6f9;
      transition: background 0.2s ease;
    }
    .filbloc_spec-item:hover { background: #F0F7FD; }
    .filbloc_spec-key { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: #b0c4d0; margin-bottom: 6px; font-weight: 600; }
    .filbloc_spec-val { font-size: 16px; font-weight: 600; color: #0E202A; line-height: 1.4; }

    /* FAQ */
    .filbloc_faq-section { background: #FFFFFF; }
    .filbloc_faq-list { margin-top: 52px; }
    .filbloc_faq-item { border-bottom: 1px solid #f2f6f9; }
    .filbloc_faq-q {
      width: 100%; background: none; border: none; text-align: left; padding: 24px 0;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      cursor: pointer; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600;
      color: #0E202A; transition: color 0.2s ease;
    }
    .filbloc_faq-q:hover { color: #4BAAD3; }
    .filbloc_faq-q .filbloc_icon {
      width: 30px; height: 30px; border-radius: 50%; background: #f2f6f9;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s ease;
    }
    .filbloc_faq-q .filbloc_icon svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
    .filbloc_faq-item.filbloc_open .filbloc_faq-q .filbloc_icon { background: #4BAAD3; }
    .filbloc_faq-item.filbloc_open .filbloc_faq-q .filbloc_icon svg { transform: rotate(45deg); color: #FFFFFF; }
    .filbloc_faq-a {
      font-size: 15px; color: #6a8898; line-height: 1.8;
      max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .filbloc_faq-item.filbloc_open .filbloc_faq-a { max-height: 500px; padding-bottom: 24px; }

    /* FINAL CTA */
    .filbloc_final-cta {
      background: linear-gradient(135deg, #0E202A 0%, #162e3d 40%, #1a3a50 100%);
      text-align: center; padding: 120px 40px; position: relative; overflow: hidden;
    }
    .filbloc_final-cta::before {
      content: 'FILBLOC'; position: absolute; font-size: 18vw; font-weight: 800;
      color: rgba(255,255,255,0.02); top: 50%; left: 50%; transform: translate(-50%,-50%);
      white-space: nowrap; pointer-events: none; user-select: none;
    }
    .filbloc_final-cta .filbloc_container { position: relative; z-index: 2; }
    .filbloc_final-cta .filbloc_section-title { color: #FFFFFF; margin-bottom: 20px; }
    .filbloc_final-cta .filbloc_section-sub { color: rgba(255,255,255,0.6); margin: 0 auto 48px; text-align: center; }
    .filbloc_final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
    .filbloc_contact-line { font-size: 14px; color: rgba(255,255,255,0.45); letter-spacing: 0.03em; }
    .filbloc_contact-line a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .filbloc_contact-line a:hover { color: #4BAAD3; }


    /* MOBILE STICKY */
    .filbloc_mobile-sticky {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
      background: rgba(14,32,42,0.97); backdrop-filter: blur(12px);
      border-top: 1px solid rgba(75,170,211,0.2); padding: 12px 16px; gap: 10px;
    }
    .filbloc_mobile-sticky a {
      flex: 1; text-align: center; padding: 13px 10px; border-radius: 12px;
      font-family: 'Sora', sans-serif; font-size: 0.82rem; font-weight: 700;
      text-decoration: none; border: none; cursor: pointer; display: block;
    }
    .filbloc_mobile-sticky .filbloc_m-shop { background: #4BAAD3; color: #FFFFFF; }
    .filbloc_mobile-sticky .filbloc_m-sample { background: transparent; color: #4BAAD3; border: 1.5px solid #4BAAD3; }

    /* ── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .filbloc_hero h1 { font-size: 34px; }
      .filbloc_section-title { font-size: 34px; }
      .filbloc_hero-content { padding: 100px 40px 60px 50px; }
    }
    @media (max-width: 900px) {
      .filbloc_hero { grid-template-columns: 1fr; min-height: auto; }
      .filbloc_hero-content { padding: 100px 24px 40px; text-align: center; }
      .filbloc_hero h1 { font-size: 30px; }
      .filbloc_hero-sub { margin-left: auto; margin-right: auto; }
      .filbloc_hero-ctas { justify-content: center; }
      .filbloc_hero-image-wrap { height: 280px; }
      .filbloc_hero-image-placeholder { width: 90%; height: 85%; }
      .filbloc_trust-item { padding: 8px 14px; font-size: 0.72rem; }
      .filbloc_reviews-grid { grid-template-columns: 1fr; }
      .filbloc_value-cards { grid-template-columns: 1fr; }
      .filbloc_products-grid { grid-template-columns: 1fr; }
      .filbloc_video-grid { grid-template-columns: 1fr; }
      .filbloc_video-features { grid-template-columns: 1fr 1fr; }
      .filbloc_apps-grid { grid-template-columns: 1fr 1fr; }
      .filbloc_compare-grid { grid-template-columns: 1fr; }
      .filbloc_tech-layout { grid-template-columns: 1fr; gap: 40px; }
      .filbloc_tech-image-wrap { height: 300px; }
      .filbloc_evidence-grid { grid-template-columns: 1fr; }
      .filbloc_specs-grid { grid-template-columns: 1fr 1fr; }
      .filbloc_mobile-sticky { display: flex; }
      .filbloc_vet-cta { flex-direction: column; text-align: center; align-items: center; }
      .filbloc_vet-cta-btns { justify-content: center; }
      .filbloc_section-title { font-size: 30px; }
      .hero-visual { height: 280px; }
      .hero-img-main { max-height: 240px; }
    }
    @media (max-width: 640px) {
      section.filbloc_section { padding: 70px 0; }
      .filbloc_container { padding: 0 18px; }
      .filbloc_hero h1 { font-size: 26px; }
      .filbloc_section-title { font-size: 26px; }
      .filbloc_apps-grid { grid-template-columns: 1fr; }
      .filbloc_specs-grid { grid-template-columns: 1fr; }
      .filbloc_trust-bar { flex-direction: column; gap: 0; padding: 0; }
      .filbloc_trust-item { border-right: none; border-bottom: 1px solid rgba(75,170,211,0.1); width: 100%; justify-content: center; }
      .filbloc_trust-item:last-child { border-bottom: none; }
      .filbloc_tech-stats { grid-template-columns: 1fr 1fr; }
      .filbloc_video-features { grid-template-columns: 1fr; }
      .filbloc_final-cta { padding: 80px 18px; }
      .filbloc_final-cta-btns { flex-direction: column; align-items: center; }
      .filbloc_final-cta-btns .filbloc_btn-primary,
      .filbloc_final-cta-btns .filbloc_btn-outline { width: 100%; max-width: 320px; text-align: center; }
      .filbloc_product-btns { flex-direction: column; }
      .filbloc_sticky-actions { gap: 6px; }
      .filbloc_sticky-btn { padding: 7px 12px; font-size: 0.72rem; }
      .filbloc_certs-row { gap: 8px; }
      .filbloc_products-intro { flex-direction: column; align-items: flex-start; }
      .filbloc_vet-cta { padding: 24px 20px; }
      .filbloc_vet-cta-btns { flex-direction: column; width: 100%; }
      .filbloc_vet-cta-btns .filbloc_btn-primary,
      .filbloc_vet-cta-btns .filbloc_btn-outline { width: 100%; text-align: center; }
    }
    @media (max-width: 400px) {
      .filbloc_hero h1 { font-size: 22px; }
      .filbloc_hero-tag { font-size: 12px; }
      .filbloc_btn-primary, .filbloc_btn-outline { padding: 13px 20px; font-size: 0.85rem; }
    }

    /* Scroll reveal */
    .filbloc_reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .filbloc_reveal.filbloc_visible { opacity: 1; transform: translateY(0); }
  </style>