@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.bc-home-page, .bc-home-page * {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.bc-home-page {
  --blue: #005f9f;
  --deep: #003f6b;
  --light: #e9f6ff;
  --yellow: #ffc20e;
  --navy: #061426;
  --muted: #53687d;
  width: 100%;
  background: #fff;
  color: var(--navy);
  overflow: hidden;
}

.bc-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: .25s ease;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}

.bc-btn:hover {
  transform: translateY(-2px);
}

.bc-btn-yellow {
  background: var(--yellow);
  color: #071326;
  box-shadow: 0 8px 18px rgba(255,194,14,.14);
}

.bc-btn-white {
  background: #fff;
  color: #071326;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* INTRO */
.bc-intro-section {
  width: 100%;
  padding: 82px 0 88px;
  background: #fff;
  overflow: hidden;
}

.bc-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.bc-blue-box, .bc-white-box {
  border-radius: 28px;
  padding: 44px;
  min-height: 310px;
}

.bc-blue-box {
  background: radial-gradient(circle at 14% 18%,rgba(255,194,14,.16),transparent 26%), linear-gradient(145deg,#003f6b,#005f9f 62%,#007fc0);
  color: #fff;
  border-top: 6px solid var(--yellow);
  box-shadow: 0 16px 34px rgba(0,103,168,.11);
}

.bc-white-box {
  background: #fff;
  border: 1px solid #d3eaf7;
  box-shadow: 0 12px 28px rgba(0,103,168,.05);
}

.bc-blue-box h2, .bc-white-box h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -1px;
}

.bc-blue-box p, .bc-white-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.bc-white-box p {
  color: var(--muted);
}

.bc-white-box .bc-btn {
  margin-top: 30px;
}

/* SELF-DIAGNOSIS SECTION */
.bc-self-diagnosis,
.bc-self-diagnosis *{
  box-sizing:border-box;
  font-family:'Poppins',Arial,sans-serif;
}

.bc-self-diagnosis{
  position:relative;
  background:
    radial-gradient(circle at 16% 18%,rgba(1,169,158,.42),transparent 34%),
    radial-gradient(circle at 78% 20%,rgba(253,183,18,.18),transparent 30%),
    linear-gradient(135deg,#021b35 0%,#00609e 56%,#01a99e 100%);
  padding:40px 18px 0;
  color:#fff;
  overflow:hidden;
}

.bcs-wrap{
  max-width:1260px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:end;
  position:relative;
  z-index:2;
}

.bcs-heading{
  grid-column:1/-1;
  text-align:center;
  max-width:900px;
  margin:0 auto 4px;
  position:relative;
  z-index:5;
}

.bcs-badge{
  display:inline-flex;
  padding:8px 17px;
  border-radius:999px;
  background:rgba(253,183,18,.15);
  border:1px solid rgba(253,183,18,.42);
  color:#fff;
  font-size:13px;
  font-weight:500;
  margin-bottom:12px;
}

.bcs-heading h2{
  margin:0;
  font-size:clamp(28px,3.8vw,46px);
  line-height:1.1;
  font-weight:600;
  letter-spacing:-.7px;
  color:#fff;
}

.bcs-heading p{
  margin:12px auto 0;
  max-width:720px;
  color:rgba(255,255,255,.88);
  font-size:15px;
  line-height:1.65;
  font-weight:400;
}

.bcs-left{
  height:590px;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  z-index:4;
}

.bcs-right{
  min-height:650px;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  overflow:visible;
  z-index:3;
}

.bcs-orbit{
  width:545px;
  height:545px;
  max-width:100%;
  max-height:100%;
  border-radius:50%;
  position:relative;
  background:conic-gradient(from 0deg,#01bfae 0deg 60deg,#159bd2 60deg 120deg,#00609e 120deg 180deg,#37a8d8 180deg 240deg,#302b73 240deg 300deg,#09bfb0 300deg 360deg);
  box-shadow:0 28px 75px rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.24);
  margin-bottom:22px;
}

.bcs-orbit:before{
  content:"";
  position:absolute;
  inset:25px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.35);
}

.bcs-center{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:195px;
  height:195px;
  border-radius:50%;
  background:#fff;
  color:#00609e;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
  font-size:19px;
  line-height:1.25;
  font-weight:600;
  box-shadow:0 18px 45px rgba(0,0,0,.2);
  border:7px solid rgba(253,183,18,.35);
}

.bcs-item{
  position:absolute;
  border:0;
  border-radius:999px;
  padding:13px 20px;
  min-width:130px;
  background:rgba(255,255,255,.20);
  color:#fff;
  font-size:13px;
  font-weight:500;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  backdrop-filter:blur(8px);
  transition:.25s ease;
  z-index:2;
}

.bcs-item:hover,
.bcs-item.active{
  background:#fdb712;
  color:#072b45;
}

.bcs-item[data-area="visibility"]{top:48px;left:50%;transform:translateX(-50%)}
.bcs-item[data-area="brand"]{top:154px;right:24px}
.bcs-item[data-area="website"]{right:38px;bottom:88px}
.bcs-item[data-area="marketing"]{left:50%;bottom:38px;transform:translateX(-50%)}
.bcs-item[data-area="sales"]{left:38px;bottom:88px}
.bcs-item[data-area="content"]{top:154px;left:24px}

.bcs-pop{
  position:absolute;
  top:4px;
  left:50%;
  transform:translateX(-50%) translateY(-8px);
  width:min(440px,90vw);
  background:#fff;
  color:#101828;
  border-radius:24px;
  padding:18px;
  box-shadow:0 28px 75px rgba(0,0,0,.32);
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  z-index:20;
  border-top:5px solid #fdb712;
}

.bcs-pop.show{
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.bcs-pop-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:12px;
}

.bcs-pop h3{
  margin:0 0 5px;
  color:#00609e;
  font-size:21px;
  font-weight:600;
}

.bcs-pop p{
  margin:0;
  color:#52606d;
  font-size:13px;
  line-height:1.55;
}

.bcs-score{
  width:72px;
  height:72px;
  border-radius:50%;
  flex:0 0 72px;
  background:conic-gradient(#01a99e 0deg,#eaf7fb 0deg);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00609e;
  font-size:16px;
  font-weight:600;
  border:8px solid #eef9fd;
}

.bcs-question{
  padding:14px;
  border-radius:16px;
  background:#f5fbff;
  border:1px solid #d9edf7;
}

.bcs-question strong{
  display:block;
  color:#06365a;
  font-size:14px;
  margin-bottom:10px;
  line-height:1.45;
  font-weight:600;
}

.bcs-options{display:grid;gap:8px}

.bcs-options button{
  border:1px solid #d9eaf3;
  background:#fff;
  color:#24364a;
  text-align:left;
  border-radius:12px;
  padding:11px 12px;
  font-size:13px;
  font-weight:500;
  cursor:pointer;
}

.bcs-options button:hover,
.bcs-options button.selected{
  background:#fff8df;
  border-color:#fdb712;
}

.bcs-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:13px;
}

.bcs-actions button,
.bcs-lead-form button{
  border:0;
  border-radius:999px;
  padding:12px 17px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}

.bcs-next,
.bcs-propose,
.bcs-submit{
  background:#fdb712;
  color:#08243d;
  box-shadow:0 10px 24px rgba(253,183,18,.22);
}

.bcs-close,
.bcs-again{
  background:#00609e;
  color:#fff;
}

.bcs-result{
  display:none;
  margin-top:12px;
  padding:14px;
  border-radius:16px;
  background:#fff;
  border:1px solid #d9edf7;
  color:#344054;
  font-size:13px;
  line-height:1.55;
}

.bcs-result strong{
  color:#00609e;
  font-weight:600;
}

.bcs-lady{
  height:720px;
  width:auto;
  max-width:none;
  object-fit:contain;
  object-position:bottom center;
  filter:drop-shadow(0 34px 46px rgba(0,0,0,.34));
  position:relative;
  z-index:2;
  margin:0 -25px -18px 0;
  display:block;
}

.bcs-right:after{
  content:"";
  position:absolute;
  left:-8%;
  right:-8%;
  bottom:0;
  height:70px;
  background:linear-gradient(90deg,transparent,rgba(253,183,18,.36),rgba(255,255,255,.20),transparent);
  border-radius:999px 999px 0 0;
  z-index:1;
}

.bcs-lady-glow{
  position:absolute;
  width:560px;
  height:560px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.18),rgba(253,183,18,.13),transparent 70%);
  bottom:70px;
  right:4%;
  z-index:1;
}

.bcs-side-card{
  position:absolute;
  left:8px;
  bottom:62px;
  z-index:3;
  width:250px;
  padding:15px;
  border-radius:22px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(12px);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.bcs-side-card h4{
  margin:0 0 6px;
  font-size:15px;
  font-weight:600;
  color:#fff;
}

.bcs-side-card p{
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:12.5px;
  line-height:1.5;
}

.bcs-lead-overlay{
  position:fixed;
  inset:0;
  background:rgba(2,17,32,.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:18px;
}

.bcs-lead-overlay.show{display:flex}

.bcs-lead-modal{
  width:min(440px,100%);
  background:#fff;
  color:#101828;
  border-radius:26px;
  padding:24px;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  border-top:6px solid #fdb712;
  position:relative;
}

.bcs-lead-modal h3{
  margin:0 0 8px;
  color:#00609e;
  font-size:24px;
  line-height:1.15;
  font-weight:600;
}

.bcs-lead-modal p{
  margin:0 0 16px;
  color:#52606d;
  font-size:13.5px;
  line-height:1.6;
}

.bcs-lead-form{display:grid;gap:11px}

.bcs-phone-row{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:8px;
}

.bcs-manual-code{display:none}
.bcs-manual-code.show{display:block}

.bcs-lead-form input,
.bcs-lead-form select{
  width:100%;
  border:1px solid #d9eaf3;
  border-radius:14px;
  padding:13px 14px;
  font-size:13px;
  outline:none;
  background:#fff;
  color:#24364a;
}

.bcs-lead-form input:focus,
.bcs-lead-form select:focus{
  border-color:#00609e;
  box-shadow:0 0 0 3px rgba(0,96,158,.10);
}

.bcs-lead-close{
  position:absolute;
  right:15px;
  top:14px;
  width:34px;
  height:34px;
  border:0;
  border-radius:50%;
  background:#f3f8fb;
  color:#00609e;
  cursor:pointer;
  font-size:18px;
  font-weight:600;
}

.bcs-thankyou{
  display:none;
  text-align:center;
  padding:12px 4px 4px;
}

.bcs-thankyou h4{
  margin:0 0 8px;
  color:#00609e;
  font-size:22px;
  font-weight:600;
}

.bcs-thankyou p{
  margin:0;
  color:#52606d;
  font-size:14px;
  line-height:1.6;
}

/* BRAND LOGOS SECTION */
.bc-logo-section,
.bc-logo-section *{
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.bc-logo-section{
    padding:90px 0;
    background:#fff;
}

.bc-logo-section .bc-wrap{
    max-width:1180px;
    margin:auto;
    padding:0 22px;
}

.bc-logo-wall{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:14px;
    background:#f8fbfd;
    border:1px solid #d9eaf4;
    border-radius:22px;
    padding:22px;
    box-shadow:0 14px 35px rgba(0,70,110,.05);
}

.bc-logo-card{
    min-height:108px;
    background:#fff;
    border:1px solid #d9eaf4;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    transition:.25s ease;
}

.bc-logo-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 28px rgba(0,70,110,.07);
}

.bc-logo-card img{
    max-width:142px;
    max-height:64px;
    object-fit:contain;
}

/* TITLES */
.bc-section-title {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.bc-section-title h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--navy);
}

.bc-section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* SERVICES */
.bc-services-section {
  padding: 90px 0 86px;
  background: radial-gradient(circle at 12% 18%,rgba(255,194,14,.08),transparent 24%), linear-gradient(180deg,#e9f6ff 0%,#e1f2fb 100%);
  overflow: hidden;
}

.bc-service-scroll, .bc-support-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
}

.bc-service-scroll::-webkit-scrollbar, .bc-support-scroll::-webkit-scrollbar {
  height: 8px;
}

.bc-service-scroll::-webkit-scrollbar-track, .bc-support-scroll::-webkit-scrollbar-track {
  background: #dceef9;
  border-radius: 20px;
}

.bc-service-scroll::-webkit-scrollbar-thumb, .bc-support-scroll::-webkit-scrollbar-thumb {
  background: #007fc0;
  border-radius: 20px;
}

.bc-service-card {
  flex: 0 0 360px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #d3eaf7;
  box-shadow: 0 12px 30px rgba(0,87,140,.08);
  scroll-snap-align: start;
  transition: .3s ease;
}

.bc-service-card:hover, .bc-support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,95,159,.15);
}

.bc-service-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.bc-service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(0,20,40,.42),rgba(0,95,159,.12));
}

.bc-service-body {
  padding: 30px;
}

.bc-service-body h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--navy);
}

.bc-service-body p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.bc-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: .25s ease;
}

.bc-card-link:hover {
  background: #ffd447;
  transform: translateY(-2px);
}

/* ROLLING SHOWCASE */
.bc-rolling-showcase {
  width: 100%;
  padding: 42px 18px;
  background: radial-gradient(circle at 12% 20%,rgba(255,194,14,.16),transparent 26%), radial-gradient(circle at 88% 75%,rgba(255,255,255,.12),transparent 24%), linear-gradient(135deg,#003f6b 0%,#005f9f 55%,#0082c8 100%);
  overflow: hidden;
  color: #fff;
}

.bc-rolling-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: 34px;
  align-items: center;
}

.bc-rolling-content span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.bc-rolling-content h2 {
  margin: 0 0 13px;
  font-size: clamp(27px, 3.8vw, 46px);
  line-height: 1.08;
  font-weight: 750;
  letter-spacing: -1px;
}

.bc-rolling-content p {
  margin: 0 0 20px;
  max-width: 455px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}

.bc-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.bc-mini-tags b {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.bc-rolling-gallery {
  height: 335px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom,transparent 0%,#000 12%,#000 88%,transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom,transparent 0%,#000 12%,#000 88%,transparent 100%);
}

.bc-roll-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
}

.bc-roll-card {
  width: 100%;
  height: 145px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  flex: 0 0 auto;
}

.bc-roll-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.bc-roll-card:hover img {
  transform: scale(1.06);
}

.bc-roll-down {
  animation: bcScrollDown_7eb1b6d9 42s linear infinite;
}

.bc-roll-up {
  animation: bcScrollUp_7eb1b6d9 46s linear infinite;
}

.bc-roll-slow {
  animation: bcScrollDown_7eb1b6d9 54s linear infinite;
}

.bc-rolling-gallery:hover .bc-roll-col {
  animation-play-state: paused;
}

@keyframes bcScrollDown_7eb1b6d9 {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes bcScrollUp_7eb1b6d9 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* FLOATING STRIP */
.bc-visual-strip {
  width: 100%;
  padding: 40px 3vw;
  background: #fff;
  overflow: hidden;
}

.bc-floating-images {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2vw;
  min-height: 180px;
}

.bc-floating-images img {
  width: clamp(170px, 22vw, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,95,159,.18));
  animation: bcFloat_7eb1b6d9 4s ease-in-out infinite;
}

.bc-floating-images img:nth-child(2) {
  animation-delay: .5s;
}

.bc-floating-images img:nth-child(3) {
  animation-delay: 1s;
}

@keyframes bcFloat_7eb1b6d9 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* SUPPORT */
.bc-support-section {
  padding: 90px 0 86px;
  background: radial-gradient(circle at 8% 18%,rgba(255,194,14,.08),transparent 24%), radial-gradient(circle at 92% 72%,rgba(0,168,159,.08),transparent 26%), #e9f6ff;
  overflow: hidden;
}

.bc-support-card {
  flex: 0 0 285px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #d3eaf7;
  border-radius: 24px;
  padding: 30px;
  min-height: 225px;
  box-shadow: 0 12px 28px rgba(0,95,159,.05);
  transition: .3s ease;
}

.bc-mini-line {
  width: 50px;
  height: 5px;
  border-radius: 50px;
  background: linear-gradient(90deg,#ffc20e,#00a89f,#005f9f);
  margin-bottom: 20px;
}

.bc-support-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.bc-support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* IMAGE CTA */
.bc-image-cta {
  width: 100%;
  padding: 105px 24px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bc-glass-box {
  max-width: 900px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 32px;
  padding: 56px;
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.bc-glass-box h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.3px;
}

.bc-glass-box p {
  margin: 0 0 34px;
  color: rgba(255,255,255,.93);
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
}

/* NEWSLETTER */
.bc-newsletter-section {
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}

.bc-newsletter-box {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 45px;
  align-items: center;
  background: radial-gradient(circle at 12% 18%,rgba(255,194,14,.15),transparent 28%), linear-gradient(135deg,#00406c 0%,#005f9f 58%,#007fc0 100%);
  border-top: 6px solid var(--yellow);
  border-radius: 34px;
  padding: 60px;
  box-shadow: 0 22px 48px rgba(0,95,159,.12);
}

.bc-newsletter-content h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1px;
}

.bc-newsletter-content p {
  margin: 0;
  max-width: 620px;
  color: rgba(255,255,255,.93);
  font-size: 16px;
  line-height: 1.85;
}

.bc-newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 10px;
  gap: 10px;
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.bc-newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 20px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}

.bc-newsletter-form button {
  border: none;
  outline: none;
  cursor: pointer;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: .3s ease;
}

.bc-newsletter-form button:hover {
  background: #ffd54d;
  transform: translateY(-2px);
}

/* FINAL */
.bc-final {
  width: 100%;
  background: radial-gradient(circle at 14% 20%,rgba(255,194,14,.18),transparent 28%), linear-gradient(135deg,#00406c 0%,#005f9f 60%,#007bb5 100%);
  border-top: 6px solid var(--yellow);
  padding: 90px 22px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.bc-final-inner {
  max-width: 880px;
  margin: auto;
}

.bc-final h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.bc-final p {
  margin: 0 auto 34px;
  max-width: 720px;
  color: rgba(255,255,255,.92);
  font-size: 17px;
  line-height: 1.75;
}

/* RESPONSIVE */
@media(max-width:1050px){
    .bc-logo-wall{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:1000px) {
  .bc-intro-grid, .bc-newsletter-box {
    grid-template-columns: 1fr;
  }
}

@media(max-width:900px) {
  .bc-rolling-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }
  .bc-rolling-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .bc-mini-tags {
    justify-content: center;
  }
  .bc-rolling-gallery {
    height: 300px;
  }
}

@media(max-width:768px){
    .bc-logo-section{
        padding:65px 0;
    }
    .bc-logo-section .bc-wrap{
        padding:0 16px;
    }
    .bc-logo-wall{
        grid-template-columns:1fr;
        padding:18px;
    }
}

@media(max-width:640px) {
  .bc-wrap {
    padding: 0 16px;
  }

  .bc-btn {
    width: 100%;
    min-height: 52px;
  }

  .bc-intro-section, .bc-services-section, .bc-support-section, .bc-newsletter-section {
    padding: 68px 0;
  }

  .bc-blue-box, .bc-white-box {
    padding: 30px 24px;
    border-radius: 24px;
    min-height: auto;
  }

  .bc-service-card {
    flex: 0 0 86%;
  }
  .bc-support-card {
    flex: 0 0 85%;
  }

  .bc-rolling-showcase {
    padding: 38px 15px;
  }
  .bc-rolling-gallery {
    height: 245px;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .bc-roll-col:nth-child(3) {
    display: none;
  }
  .bc-roll-card {
    height: 128px;
    border-radius: 18px;
  }

  .bc-visual-strip {
    padding: 28px 12px;
  }
  .bc-floating-images {
    gap: 12px;
    min-height: 110px;
  }
  .bc-floating-images img {
    width: 31%;
    min-width: 90px;
  }

  .bc-image-cta {
    padding: 78px 16px;
  }
  .bc-glass-box {
    padding: 34px 24px;
    border-radius: 24px;
  }
  .bc-glass-box h2 {
    font-size: 34px;
  }

  .bc-newsletter-box {
    padding: 32px 22px;
    border-radius: 24px;
  }
  .bc-newsletter-form {
    flex-direction: column;
    border-radius: 24px;
    padding: 14px;
  }
  .bc-newsletter-form input {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
  }
  .bc-newsletter-form button {
    width: 100%;
  }

  .bc-actions {
    flex-direction: column;
    width: 100%;
  }
}

@media(max-width:980px){
  .bcs-wrap{grid-template-columns:1fr}
  .bcs-left{height:auto;min-height:520px}
  .bcs-right{min-height:600px}
  .bcs-orbit{width:500px;height:500px;margin-bottom:15px}
  .bcs-lady{height:610px;margin-right:0}
  .bcs-lady-glow{
    width:500px;
    height:500px;
    right:50%;
    transform:translateX(50%);
  }
  .bcs-side-card{
    left:50%;
    transform:translateX(-50%);
    bottom:42px;
  }
}

@media(max-width:560px){
  .bc-self-diagnosis{
    padding:34px 12px 30px;
  }

  .bcs-wrap{
    grid-template-columns:1fr;
    gap:0;
  }

  .bcs-heading{
    margin-bottom:24px;
  }

  .bcs-heading h2{
    font-size:30px;
  }

  .bcs-heading p{
    font-size:14px;
    line-height:1.55;
  }

  .bcs-right{
    display:none !important;
  }

  .bcs-left{
    width:100%;
    height:auto;
    min-height:auto;
    padding:0 0 10px;
    align-items:center;
    justify-content:center;
  }

  .bcs-orbit{
    width:345px;
    height:345px;
    margin:0 auto;
  }

  .bcs-orbit:before{
    inset:16px;
  }

  .bcs-center{
    width:126px;
    height:126px;
    font-size:14px;
    padding:15px;
  }

  .bcs-item{
    min-width:92px;
    padding:9px 10px;
    font-size:10.5px;
  }

  .bcs-item[data-area="visibility"]{top:30px}
  .bcs-item[data-area="brand"]{top:98px;right:6px}
  .bcs-item[data-area="website"]{right:8px;bottom:58px}
  .bcs-item[data-area="marketing"]{bottom:18px}
  .bcs-item[data-area="sales"]{left:8px;bottom:58px}
  .bcs-item[data-area="content"]{top:98px;left:6px}

  .bcs-pop{
    top:-14px;
    width:94vw;
    max-width:350px;
    padding:15px;
  }

  .bcs-pop-top{
    align-items:flex-start;
  }

  .bcs-score{
    width:62px;
    height:62px;
    flex-basis:62px;
    font-size:14px;
    border-width:7px;
  }

  .bcs-phone-row{
    grid-template-columns:1fr;
  }
}
