    .belit-contact{
      --navy:#051f3e;
      --blue:#128bcc;
      --red:#ed1c27;
      --white:#ffffff;
      --dark1:#041a34;
      --dark2:#051f3e;

      --ink:#071a33;
      --muted:rgba(5,31,62,.70);
      --line:rgba(5,31,62,.12);

      --shadow: 0 18px 60px rgba(5,31,62,.10);
      --shadow2: 0 28px 90px rgba(5,31,62,.14);

      --rad1: 16px;
      --rad2: 22px;
      --rad3: 28px;

      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--ink);
      background: var(--white);
      overflow-x: hidden;
      isolation: isolate;
    }
    .belit-contact *{ box-sizing: border-box; }
    .belit-contact [id]{ scroll-margin-top:90px; }
    .belit-contact a{ color: inherit; text-decoration: none; }
    .belit-contact h1, .belit-contact h2, .belit-contact p{ margin: 0 0 10px 0; }

    .bc-wrap{
      max-width:1180px;
      margin:0 auto;
      padding:0 20px;
    }
    .bc-sec{
      padding:84px 0;
      position:relative;
    }
    .belit-contact > .bc-sec:first-child{
      padding-top:var(--blt-hero-pad-top);
    }
    @media (max-width: 900px){
      .bc-sec{ padding:64px 0; }
    }

    /* ===== Hero (copy left + illustration background) ===== */
    .bc-pagehero{
      position:relative;
      min-height:100vh;
      min-height:100dvh;
      display:flex;
      align-items:flex-start;
      padding:var(--blt-hero-pad-top) 0 var(--blt-hero-pad-bottom);
      background:
        radial-gradient(1100px 520px at 12% -8%, rgba(18,139,204,.20), transparent 58%),
        radial-gradient(900px 480px at 88% 18%, rgba(237,28,39,.08), transparent 62%),
        linear-gradient(180deg, rgba(18,139,204,.05) 0%, rgba(255,255,255,1) 78%);
      border-bottom:1px solid rgba(5,31,62,.08);
      overflow:hidden;
    }
    .bc-pagehero::before{
      content:"";
      position:absolute; inset:0;
      background-image:
        linear-gradient(rgba(5,31,62,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5,31,62,.04) 1px, transparent 1px);
      background-size:48px 48px;
      mask-image:linear-gradient(180deg, #000 0%, transparent 92%);
      -webkit-mask-image:linear-gradient(180deg, #000 0%, transparent 92%);
      pointer-events:none;
      opacity:.65;
    }
    .bc-hero-bg{
      position:absolute; inset:0;
      z-index:1;
      pointer-events:none;
      overflow:hidden;
    }
    .bc-hero-bg-img{
      position:absolute;
      right:0;
      top:50%;
      transform:translateY(-50%);
      width:min(72%, 760px);
      height:auto;
      max-height:min(92%, 420px);
      object-fit:contain;
      object-position:right center;
    }
    .bc-hero-bg-fade{
      position:absolute; inset:0;
      z-index:1;
      pointer-events:none;
      background:linear-gradient(90deg,
        #fff 0%,
        #fff 28%,
        rgba(255,255,255,.92) 38%,
        rgba(255,255,255,.55) 50%,
        transparent 68%
      );
    }
    .bc-hero-orbs{
      position:absolute; inset:0;
      pointer-events:none;
      overflow:hidden;
      z-index:0;
    }
    .bc-orb{
      position:absolute;
      border-radius:50%;
      filter:blur(60px);
      opacity:.55;
    }
    .bc-orb--blue{
      width:420px; height:420px;
      top:-120px; right:8%;
      background:rgba(18,139,204,.28);
    }
    .bc-orb--red{
      width:280px; height:280px;
      bottom:-80px; left:6%;
      background:rgba(237,28,39,.14);
    }
    .bc-pagehero > .bc-wrap{
      width:100%;
      position:relative;
      z-index:2;
    }
    .bc-hero-grid{
      position:relative;
      display:flex;
      flex-direction:column;
      gap:clamp(20px, 3vw, 28px);
      width:100%;
    }
    .bc-hero-copy{
      max-width:min(54ch, 48%);
    }
    @media (max-width: 980px){
      .bc-hero-copy{ max-width:none; }
      .bc-hero-bg-img{
        width:min(100%, 520px);
        right:50%;
        transform:translate(50%, -42%);
        top:auto;
        bottom:0;
        opacity:.55;
      }
      .bc-hero-bg-fade{
        background:linear-gradient(180deg,
          #fff 0%,
          #fff 42%,
          rgba(255,255,255,.75) 58%,
          transparent 78%
        );
      }
    }
    .bc-hero-copy{
      position:relative;
      display:flex;
      flex-direction:column;
    }
    .bc-pagehero .bc-h1{ margin-top:0; }
    .bc-pagehero .bc-kicker{
      align-self:center;
      width:fit-content;
      max-width:100%;
    }
    .bc-kicker{
      display:inline-flex; align-items:center; flex-wrap:wrap; gap:10px;
      padding:10px 16px; border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.82);
      backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
      font-size:13px; font-weight:900;
      color:rgba(5,31,62,.80);
      letter-spacing:.02em;
      text-transform:none;
      margin-bottom:0;
    }
    .bc-kicker .dot{
      width:9px; height:9px; border-radius:50%;
      background:var(--red);
      box-shadow:0 0 0 4px rgba(237,28,39,.16);
      animation:bc-pulse 2.4s ease-in-out infinite;
    }
    .bc-kicker-sep{
      width:1px; height:14px;
      background:rgba(5,31,62,.16);
    }
    .bc-kicker-sub{
      font-weight:700;
      color:rgba(5,31,62,.62);
    }
    @keyframes bc-pulse{
      0%,100%{ box-shadow:0 0 0 4px rgba(237,28,39,.16); }
      50%{ box-shadow:0 0 0 8px rgba(237,28,39,.06); }
    }
    .bc-pagehero .bc-h1{
      text-align:left;
      max-width:none;
      margin:0 0 18px;
      font-size:clamp(42px, 5.4vw, 76px);
      line-height:1.02;
      letter-spacing:-.04em;
      color:var(--navy);
    }
    .bc-accent{
      display:block;
      background:linear-gradient(135deg, var(--blue) 0%, #0a6fa8 45%, var(--navy) 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .bc-hero-nav{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:10px;
      width:100%;
      max-width:min(100%, 560px);
      margin-top:clamp(28px, 4vw, 44px);
    }
    @media (max-width: 680px){
      .bc-hero-nav{ grid-template-columns:1fr; max-width:none; }
    }
    .belit-contact .bc-hero-nav-link{
      display:flex; align-items:center; justify-content:center;
      min-height:44px; padding:0 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.10);
      background:linear-gradient(180deg, #0a2d52 0%, var(--navy) 100%);
      box-shadow:0 10px 28px rgba(5,31,62,.22);
      font-size:clamp(12px, 1.1vw, 13.5px); font-weight:800;
      color:#fff;
      text-align:center;
      transition:transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .belit-contact .bc-hero-nav-link:hover{
      transform:translateY(-1px);
      border-color:rgba(18,139,204,.45);
      background:linear-gradient(180deg, #0d3a66 0%, #072a4f 100%);
      box-shadow:0 14px 34px rgba(5,31,62,.28);
      color:rgba(255,255,255,.96);
    }
    .bc-lead{
      margin:0;
      max-width:58ch;
      font-size:clamp(17px, 1.35vw, 20px);
      line-height:1.72;
      color:var(--muted);
      font-weight:500;
    }
  .bc-centerhead{
      position:relative;
      max-width:860px;
      margin:0 auto 56px;
      text-align:center;
    }
    .bc-eyebrow{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px; border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.85);
      backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
      font-size:12.5px; font-weight:900;
      color:rgba(5,31,62,.78);
      letter-spacing:.04em;
    }
    .bc-eyebrow::before{
      content:""; width:10px; height:10px;
      border-radius:3px;
      background:linear-gradient(135deg, var(--blue), rgba(18,139,204,.35));
      box-shadow:0 10px 24px rgba(18,139,204,.12);
      flex:0 0 auto;
    }
    .bc-h2{
      margin:14px 0 0;
      font-size:clamp(28px, 3vw, 44px);
      line-height:1.12;
      letter-spacing:-.03em;
      color:var(--navy);
    }
    .bc-brandline{
      height:3px; width:140px; border-radius:999px;
      background:linear-gradient(90deg, transparent, rgba(237,28,39,.82), transparent);
      margin:20px auto 0;
    }
    .bc-centerhead .bc-sub{
      margin:18px auto 0;
    }
    .bc-dark .bc-h2{ color:#fff; }
    .bc-dark .bc-eyebrow{
      border-color:rgba(255,255,255,.20);
      background:rgba(255,255,255,.08);
      color:rgba(255,255,255,.86);
    }
    .bc-dark .bc-eyebrow::before{
      background:linear-gradient(135deg, rgba(237,28,39,.95), rgba(18,139,204,.55));
    }
    .bc-dark .bc-sub{ color:rgba(255,255,255,.78); }
    .bc-h1{
      font-size:clamp(42px, 5.4vw, 76px);
      line-height:1.02;
      letter-spacing:-.04em;
      color:var(--navy);
      margin:22px 0 18px;
    }
    @media (max-width: 768px){
      .bc-pagehero{ padding:120px 0 72px; }
      .bc-pagehero .bc-h1{ font-size:clamp(36px, 9vw, 52px); }
    }
    .belit-contact .bc-sub{
      color: var(--muted);
      font-size: clamp(15px, 1.15vw, 17px);
      line-height: 1.65;
      max-width: 60ch;
      margin-left: auto !important;
      margin-right: auto !important;
      text-align: center !important;
      text-wrap: balance;
    }

    /* ===== Reveal ===== */
    .bc-observe .bc-reveal,
    .bc-observe .bc-stagger > *{
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .7s cubic-bezier(.18,.9,.2,1), transform .7s cubic-bezier(.18,.9,.2,1);
      will-change: opacity, transform;
    }
    .bc-observe.bc-in .bc-reveal,
    .bc-observe.bc-in .bc-stagger > *{ opacity: 1; transform: none; }
    .bc-stagger > *:nth-child(2){ transition-delay: .08s; }
    .bc-stagger > *:nth-child(3){ transition-delay: .16s; }
    @media (prefers-reduced-motion: reduce){
      .bc-reveal, .bc-stagger > *{ opacity: 1 !important; transform: none !important; transition: none !important; }
    }

    /* ===== Dark sekcija (kancelarija + lokacija) ===== */
    .bc-dark{
      background:
        radial-gradient(1000px 520px at 25% 10%, rgba(18,139,204,.22), transparent 62%),
        radial-gradient(900px 520px at 80% 70%, rgba(237,28,39,.14), transparent 60%),
        linear-gradient(180deg, var(--dark1) 0%, var(--dark2) 55%, var(--dark1) 100%);
      color:rgba(255,255,255,.92);
      position:relative;
      overflow:hidden;
    }
    .bc-dark::before{
      content:"";
      position:absolute; inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size:64px 64px;
      mask-image:radial-gradient(900px 380px at 50% 0%, #000 0, transparent 70%);
      -webkit-mask-image:radial-gradient(900px 380px at 50% 0%, #000 0, transparent 70%);
      pointer-events:none;
    }
    .bc-dark > .bc-wrap{
      position:relative;
      z-index:1;
    }
    .bc-dark .bc-card{
      box-shadow:0 22px 70px rgba(0,0,0,.28);
    }

    /* ===== Panel sa dve kartice ===== */
    .bc-panel{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: stretch;
    }
    @media (max-width: 980px){ .bc-panel{ grid-template-columns: 1fr; } }

    /* ===== Kartica ===== */
    .bc-card{
      position: relative;
      border: 1px solid var(--line);
      border-radius: var(--rad3);
      background:
        radial-gradient(520px 220px at 0% 0%, rgba(18,139,204,.08), transparent 60%),
        radial-gradient(520px 240px at 100% 0%, rgba(237,28,39,.06), transparent 60%),
        rgba(255,255,255,.94);
      box-shadow: var(--shadow);
      padding: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      color: var(--ink);
    }
    .bc-card::after{
      content: "";
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 5px;
      background: rgba(18,139,204,.85);
    }
    .bc-card[data-accent="red"]::after{ background: rgba(237,28,39,.85); }

    .bc-cardTop{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 16px;
    }
    .bc-chip{
      font-size: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid rgba(5,31,62,.12);
      background: rgba(5,31,62,.03);
      color: rgba(5,31,62,.72);
      font-weight: 700;
      white-space: nowrap;
    }
    .bc-dot{
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(18,139,204,.95);
      box-shadow: 0 0 0 6px rgba(18,139,204,.12);
      flex: 0 0 auto;
    }
    .bc-card[data-accent="red"] .bc-dot{
      background: rgba(237,28,39,.95);
      box-shadow: 0 0 0 6px rgba(237,28,39,.10);
    }

    /* ===== Kancelarija: redovi sa ikonicama ===== */
    .bc-lines{ display: grid; gap: 14px; flex: 1; align-content: start; }
    .bc-line{ display: flex; gap: 14px; align-items: flex-start; }
    .bc-ico{
      width: 36px; height: 36px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(5,31,62,.10);
      background: rgba(255,255,255,.86);
      color: rgba(5,31,62,.78);
      flex: 0 0 auto;
    }
    .bc-lineBody{ min-width: 0; }
    .bc-lineK{
      font-size: 12px;
      color: rgba(5,31,62,.58);
      margin-bottom: 2px;
      letter-spacing: .02em;
    }
    .bc-lineV{
      font-size: 14px;
      line-height: 1.5;
      color: rgba(5,31,62,.88);
      word-break: break-word;
    }
    .bc-card a.bc-lineV{
      color: var(--blue);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: rgba(18,139,204,.35);
      text-underline-offset: 3px;
      transition: color .2s ease, text-decoration-color .2s ease;
    }
    .bc-card a.bc-lineV:hover{
      color: #0a6fa8;
      text-decoration-color: rgba(10,111,168,.55);
    }

    .bc-pills{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }
    .bc-card a.bc-pill{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(5,31,62,.14);
      background: linear-gradient(180deg, #0a2d52 0%, var(--navy) 100%);
      box-shadow: 0 10px 28px rgba(5,31,62,.18);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      transition: transform .18s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .bc-card a.bc-pill:hover{
      transform: translateY(-1px);
      border-color: rgba(18,139,204,.45);
      background: linear-gradient(180deg, #0d3a66 0%, #072a4f 100%);
      box-shadow: 0 14px 34px rgba(5,31,62,.24);
      color: #fff;
    }

    /* ===== Mapa ===== */
    .bc-mapCard{
      background:
        radial-gradient(520px 220px at 0% 0%, rgba(237,28,39,.06), transparent 60%),
        radial-gradient(520px 240px at 100% 0%, rgba(18,139,204,.06), transparent 60%),
        rgba(255,255,255,.94);
    }
    .bc-mapHead{ margin-bottom: 12px; }
    .bc-mapK{
      font-size: 12px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(5,31,62,.55);
      font-weight: 800;
      margin-bottom: 4px;
    }
    .bc-mapT{
      font-size: 15px;
      font-weight: 800;
      letter-spacing: -.01em;
      color: var(--navy);
    }
    .bc-mapFrame{
      position: relative;
      flex: 1;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(5,31,62,.10);
      background: rgba(255,255,255,.86);
      min-height: 280px;
    }
    .bc-card a.bc-mapBadge{
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 10px;
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(5,31,62,.12);
      box-shadow: 0 6px 18px rgba(5,31,62,.14);
      color: var(--navy);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: -.005em;
      max-width: calc(100% - 24px);
    }
    .bc-mapBadge::after{
      content: "";
      width: 12px; height: 12px;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23128bcc' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M14 3h7v7'/><path d='M21 3 10 14'/><path d='M21 14v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5'/></svg>");
      background-repeat: no-repeat;
      background-size: contain;
      display: inline-block;
      flex: 0 0 auto;
    }
    .bc-card a.bc-mapBadge:hover{
      border-color: rgba(5,31,62,.22);
      box-shadow: 0 10px 26px rgba(5,31,62,.18);
      color: var(--navy);
    }
    @media (max-width: 980px){
      .bc-mapFrame{ min-height: 240px; }
    }
    .bc-mapFrame iframe{
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }
    .bc-card a.bc-mapLink{
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: rgba(18,139,204,.35);
      text-underline-offset: 3px;
      transition: color .2s ease, text-decoration-color .2s ease;
    }
    .bc-card a.bc-mapLink:hover{
      color: #0a6fa8;
      text-decoration-color: rgba(10,111,168,.55);
    }
    .bc-mapArr{
      width: 10px; height: 10px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: rotate(45deg);
      margin-top: -2px;
    }

    /* ===== Forma ===== */
    .bc-formCard{ padding: 24px; }
    .belit-contact .bc-formTitle{
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--navy);
      margin: 0 0 24px !important;
    }
    .bc-formSub{
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      margin-bottom: 18px;
    }

    .bc-form{
      display: grid;
      gap: 14px;
    }
    .bc-row2{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    @media (max-width: 680px){ .bc-row2{ grid-template-columns: 1fr; } }

    .bc-field{ display: grid; gap: 6px; }
    .bc-field-full{ grid-column: 1 / -1; }

    .bc-field label{
      font-size: 12px;
      line-height: 1.15;
      color: rgba(5,31,62,.62);
      letter-spacing: .02em;
      font-weight: 600;
    }

    .belit-contact .bc-input,
    .belit-contact .bc-select,
    .belit-contact .bc-textarea{
      width: 100%;
      border-radius: var(--rad1);
      border: 1px solid rgba(5,31,62,.14) !important;
      background: rgba(255,255,255,.94) !important;
      box-shadow: 0 10px 26px rgba(5,31,62,.06) !important;
      outline: none !important;
      padding: 12px 14px;
      font-size: 14px;
      color: rgba(5,31,62,.90) !important;
      transition: border-color .2s ease, box-shadow .2s ease, transform .18s ease;
      -webkit-appearance: none;
      appearance: none;
    }
    .belit-contact .bc-input::placeholder,
    .belit-contact .bc-textarea::placeholder{
      color: rgba(5,31,62,.45);
    }
    .belit-contact .bc-input:focus,
    .belit-contact .bc-select:focus,
    .belit-contact .bc-textarea:focus{
      border-color: rgba(18,139,204,.55) !important;
      box-shadow: 0 0 0 6px rgba(18,139,204,.12), 0 16px 40px rgba(5,31,62,.08) !important;
      transform: translateY(-1px);
    }
    .bc-textarea{ min-height: 130px; resize: vertical; }

    .bc-selectWrap{ position: relative; }
    .bc-selectWrap::after{
      content: "";
      position: absolute;
      right: 16px; top: 50%;
      width: 8px; height: 8px;
      border-right: 2px solid rgba(5,31,62,.55);
      border-bottom: 2px solid rgba(5,31,62,.55);
      transform: translateY(-65%) rotate(45deg);
      pointer-events: none;
    }
    .bc-select{ padding-right: 44px; cursor: pointer; }

    /* CV drop (samo za temu "Karijera u Belitu") */
    .bc-cvWrap{ display: none; }
    .bc-cvWrap.is-on{ display: grid; }
    .bc-drop{
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: var(--rad1);
      border: 1px dashed rgba(5,31,62,.22);
      background: rgba(255,255,255,.75);
      box-shadow: 0 10px 26px rgba(5,31,62,.05);
      cursor: pointer;
      transition: border-color .2s ease, box-shadow .2s ease, transform .18s ease;
    }
    .bc-drop:hover{
      transform: translateY(-1px);
      border-color: rgba(18,139,204,.45);
      box-shadow: 0 0 0 6px rgba(18,139,204,.10), 0 16px 40px rgba(5,31,62,.08);
    }
    .bc-file{
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
    }
    .bc-dropTxt{ display: grid; gap: 2px; }
    .bc-dropT{ font-size: 13px; color: rgba(5,31,62,.82); }
    .bc-dropT span{ text-decoration: underline; }
    .bc-dropS{ font-size: 12px; color: rgba(5,31,62,.55); }

    /* Donji red: consent + dugme */
    .bc-formBottom{
      display: grid;
      gap: 12px;
      align-items: center;
      margin-top: 6px;
    }
    @media (min-width: 720px){
      .bc-formBottom{ grid-template-columns: 1fr auto; gap: 18px; }
    }
    .bc-consent{
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(5,31,62,.70);
      font-size: 12px;
      line-height: 1.45;
      user-select: none;
    }
    .bc-consent input{
      margin-top: 2px;
      width: 16px; height: 16px;
      accent-color: var(--blue);
      flex: 0 0 auto;
    }
    .bc-btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(5,31,62,.14);
      background: rgba(5,31,62,.03);
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }
    .bc-btn:hover{
      transform: translateY(-1px);
      border-color: rgba(5,31,62,.22);
      box-shadow: 0 18px 40px rgba(5,31,62,.10);
    }
    .bc-btnIco{
      width: 26px; height: 26px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(5,31,62,.10);
      background: rgba(255,255,255,.86);
      color: var(--navy);
    }

    /* ===== CF7 ===== */
    .bc-formCard .wpcf7 .screen-reader-response{
      position: absolute;
      overflow: hidden;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
      height: 1px;
      width: 1px;
      margin: -1px;
      padding: 0;
      border: 0;
    }
    .bc-formCard .wpcf7 .hidden-fields-container{
      display: none;
    }
    .bc-formCard .wpcf7{
      display: grid;
      gap: 14px;
      position: relative;
    }
    .bc-formCard .wpcf7 form{
      display: grid;
      gap: 14px;
      margin: 0;
    }
    .bc-formCard .wpcf7 form p{
      margin: 0;
    }
    .bc-formCard .wpcf7-form-control-wrap{
      display: block;
      width: 100%;
    }
    .bc-formCard .wpcf7-not-valid-tip{
      font-size: 11px;
      color: #b42318;
      margin-top: 4px;
    }
    .bc-formCard .wpcf7-response-output{
      margin: 0;
      padding: 0;
      border: 0;
      font-size: 13px;
      line-height: 1.45;
    }
    .bc-formCard .wpcf7 form.init .wpcf7-response-output,
    .bc-formCard .wpcf7 form.resetting .wpcf7-response-output,
    .bc-formCard .wpcf7 form.submitting .wpcf7-response-output,
    .bc-formCard .wpcf7-response-output:empty{
      display: none;
    }
    .bc-formCard .wpcf7-response-output:not(:empty){
      padding: 12px 14px;
      border-radius: var(--rad1);
      border: 1px solid rgba(5,31,62,.14);
    }
    .bc-formCard .wpcf7 form.sent .wpcf7-response-output{
      border-color: rgba(18,139,204,.35);
      background: rgba(18,139,204,.08);
      color: rgba(5,31,62,.88);
    }
    .bc-formCard .wpcf7 form.invalid .wpcf7-response-output,
    .bc-formCard .wpcf7 form.failed .wpcf7-response-output,
    .bc-formCard .wpcf7 form.spam .wpcf7-response-output{
      border-color: rgba(180,35,24,.35);
      background: rgba(180,35,24,.06);
      color: rgba(5,31,62,.88);
    }
    .bc-formCard .wpcf7-spinner{
      display: none;
    }
    .bc-formCard .bc-consent .wpcf7-form-control-wrap{
      display: inline;
    }
    .bc-formCard .bc-consent .wpcf7-list-item{
      margin: 0;
    }
    .bc-formCard .bc-consent label{
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(5,31,62,.70);
      font-size: 12px;
      line-height: 1.45;
      user-select: none;
      cursor: pointer;
    }
    .bc-formCard .bc-consent input[type="checkbox"]{
      margin-top: 2px;
      width: 16px;
      height: 16px;
      accent-color: var(--blue);
      flex: 0 0 auto;
    }
    .bc-formCard .bc-consent .wpcf7-list-item-label{
      flex: 1;
    }
    .bc-formCard .bc-drop .wpcf7-form-control-wrap{
      position: absolute;
      inset: 0;
      z-index: 2;
    }
    .bc-formCard .bc-drop .wpcf7-form-control-wrap input[type="file"]{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
    }
    .bc-formCard .wpcf7-submit.bc-btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 18px 12px 18px;
      padding-right: 52px;
      border-radius: 999px;
      border: 1px solid rgba(5,31,62,.14);
      background: rgba(5,31,62,.03);
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
      white-space: nowrap;
      position: relative;
      min-height: 44px;
      -webkit-appearance: none;
      appearance: none;
    }
    .bc-formCard .wpcf7-submit.bc-btn::after{
      content: "";
      position: absolute;
      right: 12px;
      top: 50%;
      width: 26px;
      height: 26px;
      transform: translateY(-50%);
      border-radius: 999px;
      border: 1px solid rgba(5,31,62,.10);
      background: rgba(255,255,255,.86) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' fill='none' stroke='%23051f3e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center/14px no-repeat;
    }
    .bc-formCard .wpcf7-submit.bc-btn:hover{
      transform: translateY(-1px);
      border-color: rgba(5,31,62,.22);
      box-shadow: 0 18px 40px rgba(5,31,62,.10);
    }
