:root{
  --green:#064b35;
  --green2:#075f43;
  --green3:#0b6b4a;
  --gold:#f7c600;
  --dark:#071827;
  --muted:#667085;
  --bg:#f5f7f2;
  --border:#e5e7eb;
  --white:#fff;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:var(--bg);
  color:var(--dark);
}

.sf-header{
  background:var(--green);
  color:#fff;
  padding:18px 6%;
  display:flex;
  align-items:center;
}

.sf-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.sf-brand strong{
  display:block;
  font-size:20px;
}

.sf-brand span{
  font-size:13px;
  opacity:.9;
}

.sf-logo{
  width:50px;
  height:50px;
  border-radius:16px;
  background:var(--gold);
  color:var(--green);
  display:grid;
  place-items:center;
  font-weight:900;
}

.sf-event-hero{
  min-height:620px;
  padding:70px 6% 110px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
  color:#fff;
  background:
    radial-gradient(circle at 20% 20%,rgba(247,198,0,.12),transparent 25%),
    linear-gradient(135deg,#043827,#076346);
}

.sf-kicker{
  color:var(--gold);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:0 0 14px;
}

.sf-hero-left h1{
  font-size:clamp(52px,7vw,96px);
  line-height:.92;
  margin:0 0 16px;
  color:#fff;
}

.sf-hero-left h3{
  font-size:26px;
  margin:0 0 18px;
  color:var(--gold);
}

.sf-hero-left p{
  max-width:720px;
  font-size:22px;
  line-height:1.45;
}

.sf-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0;
}

.sf-meta span{
  padding:15px 22px;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  font-weight:800;
}

.sf-countdown{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:650px;
  gap:14px;
  margin:24px 0 30px;
}

.sf-countdown div{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  padding:22px 10px;
  border-radius:20px;
  text-align:center;
}

.sf-countdown strong{
  display:block;
  font-size:42px;
}

.sf-countdown span{
  font-size:14px;
}

.sf-btn{
  display:inline-block;
  border:0;
  background:var(--gold);
  color:#061827;
  padding:18px 34px;
  border-radius:18px;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 16px 30px rgba(0,0,0,.16);
}

.sf-btn-muted{
  background:#9ca3af;
  cursor:not-allowed;
}

.sf-full{
  width:100%;
  margin-top:24px;
}

.sf-hero-right img,
.sf-image-placeholder{
  width:100%;
  min-height:390px;
  border-radius:38px;
  object-fit:cover;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.sf-image-placeholder{
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.14);
  font-size:44px;
  font-weight:900;
}

.sf-feature-row{
  margin:-64px 6% 30px;
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  border-radius:28px;
  box-shadow:0 24px 70px rgba(0,0,0,.12);
  overflow:hidden;
}

.sf-feature-row div{
  padding:28px;
  border-right:1px solid var(--border);
  text-align:center;
}

.sf-feature-row strong{
  display:block;
  color:var(--green);
  font-size:20px;
}

.sf-feature-row span{
  display:block;
  margin-top:8px;
  color:var(--muted);
}

.sf-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin:20px 6% 40px;
  background:#fff;
  border-radius:28px;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
  overflow:hidden;
}

.sf-stats div{
  padding:34px;
  text-align:center;
  border-right:1px solid var(--border);
}

.sf-stats strong{
  display:block;
  color:var(--green);
  font-size:48px;
}

.sf-stats span{
  font-weight:900;
  color:var(--muted);
  text-transform:uppercase;
}

.sf-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  padding:0 6% 60px;
}

.sf-actions a{
  background:#fff;
  color:var(--green);
  border:1px solid var(--border);
  padding:15px 22px;
  border-radius:16px;
  text-decoration:none;
  font-weight:900;
}

.sf-register-page{
  min-height:calc(100vh - 86px);
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:40px;
  padding:60px 6%;
  background:
    linear-gradient(90deg,rgba(6,75,53,.95) 0%,rgba(6,75,53,.95) 44%,#f6f7f2 44%,#f6f7f2 100%);
}

.sf-register-info{
  color:#fff;
  padding:40px 10px;
}

.sf-register-info h1{
  font-size:clamp(44px,6vw,78px);
  line-height:.95;
  margin:0 0 18px;
}

.sf-register-info p{
  font-size:20px;
}

.sf-register-photo{
  margin:28px 0;
  border-radius:30px;
  overflow:hidden;
  background:rgba(255,255,255,.14);
  min-height:300px;
  display:grid;
  place-items:center;
  font-size:36px;
  font-weight:900;
}

.sf-register-photo img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

.sf-slot-pill{
  display:inline-block;
  background:var(--gold);
  color:var(--dark);
  padding:15px 22px;
  border-radius:999px;
  font-weight:900;
}

.sf-register-card{
  background:#fff;
  border-radius:34px;
  padding:38px;
  box-shadow:0 30px 80px rgba(0,0,0,.14);
}

.sf-register-card h2{
  font-size:42px;
  margin:0 0 4px;
}

.sf-small{
  color:var(--muted);
  margin-bottom:26px;
}

.sf-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

label{
  display:grid;
  gap:8px;
  font-weight:900;
}

input,select{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:15px;
  font:inherit;
  background:#fff;
}

input:focus,select:focus{
  outline:3px solid rgba(247,198,0,.35);
  border-color:var(--gold);
}

.errorlist{
  margin:0;
  padding-left:18px;
  color:#b91c1c;
  font-size:13px;
}

.sf-success{
  padding:60px 6%;
}

.sf-success-card{
  max-width:820px;
  margin:auto;
  text-align:center;
  background:#061827;
  color:#fff;
  border-radius:34px;
  padding:45px;
}

.sf-check{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#16a34a;
  display:grid;
  place-items:center;
  margin:0 auto 20px;
  font-size:54px;
}

.sf-ticket{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 20px;
  text-align:left;
  background:rgba(255,255,255,.08);
  border-radius:22px;
  padding:24px;
  margin:30px 0;
}

.sf-footer{
  text-align:center;
  padding:24px;
  color:var(--muted);
}

@media(max-width:900px){
  .sf-event-hero,
  .sf-register-page{
    grid-template-columns:1fr;
  }

  .sf-register-page{
    background:var(--green);
  }

  .sf-feature-row,
  .sf-stats,
  .sf-grid{
    grid-template-columns:1fr;
  }

  .sf-countdown{
    grid-template-columns:repeat(2,1fr);
  }

  .sf-hero-left h1,
  .sf-register-info h1{
    font-size:48px;
  }
}
/* Big Conversation registration page */
.bc-register-page{
  min-height:calc(100vh - 86px);
  display:grid;
  grid-template-columns:1fr 430px;
  gap:34px;
  align-items:center;
  padding:56px 7%;
  background:
    radial-gradient(circle at 92% 18%, rgba(247,198,0,.22), transparent 20%),
    linear-gradient(135deg,#ffffff 0%,#ffffff 58%,#eef7ff 58%,#ffffff 100%);
  position:relative;
  overflow:hidden;
}

.bc-register-card{
  max-width:760px;
}

.bc-form-head h1{
  margin:0;
  color:#061a3a;
  text-transform:uppercase;
  font-size:clamp(34px,4.5vw,56px);
  line-height:1;
  font-weight:900;
}

.bc-form-head span{
  display:block;
  width:54px;
  height:4px;
  background:var(--gold);
  margin:14px 0 28px;
  border-radius:999px;
}

.bc-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 24px;
}

.bc-grid label{
  font-weight:900;
  color:#071827;
  font-size:14px;
}

.bc-grid b{
  color:#e11d48;
}

.bc-grid input,
.bc-grid select{
  margin-top:8px;
  border:1px solid #d7dde8;
  background:#fff;
  border-radius:8px;
  padding:14px 16px;
  min-height:48px;
}

.bc-check{
  margin:22px 0;
  display:flex;
  grid-template-columns:auto 1fr;
  gap:10px;
  color:#475569;
  font-weight:500;
  line-height:1.4;
}

.bc-check input{
  width:18px;
  height:18px;
  margin-top:2px;
}

.bc-submit{
  width:100%;
  border:0;
  background:#061a3a;
  color:var(--gold);
  padding:18px 22px;
  border-radius:9px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  cursor:pointer;
}

.bc-register-photo{
  min-height:520px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.bc-register-photo::before{
  content:"";
  position:absolute;
  width:430px;
  height:430px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),#0b6bff);
  right:-70px;
  top:20px;
}

.bc-register-photo img{
  position:relative;
  z-index:2;
  width:430px;
  height:430px;
  object-fit:cover;
  border-radius:50%;
  border:14px solid #fff;
  box-shadow:0 22px 60px rgba(0,0,0,.16);
}

.bc-photo-placeholder{
  position:relative;
  z-index:2;
  width:430px;
  height:430px;
  border-radius:50%;
  background:#061a3a;
  color:#fff;
  display:grid;
  place-items:center;
  text-align:center;
  font-weight:900;
  font-size:30px;
  border:14px solid #fff;
}

@media(max-width:900px){
  .bc-register-page{
    grid-template-columns:1fr;
    padding:34px 5%;
  }

  .bc-grid{
    grid-template-columns:1fr;
  }

  .bc-register-photo{
    min-height:320px;
  }

  .bc-register-photo img,
  .bc-photo-placeholder{
    width:280px;
    height:280px;
  }

  .bc-register-photo::before{
    width:280px;
    height:280px;
    right:50%;
    transform:translateX(50%);
  }
}

/* Big Conversation landing page */
.bc-landing{
  background:#061a3a;
  color:#fff;
  min-height:760px;
  position:relative;
  overflow:hidden;
}

.bc-landing::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(6,26,58,.96) 0%,rgba(6,26,58,.88) 45%,rgba(6,26,58,.25) 100%),
    radial-gradient(circle at 80% 20%,rgba(247,198,0,.24),transparent 20%);
  z-index:1;
}

.bc-nav,
.bc-hero{
  position:relative;
  z-index:2;
}

.bc-nav{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 6%;
}

.bc-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  line-height:1;
}

.bc-logo-icon{
  color:var(--gold);
  font-size:34px;
}

.bc-logo b{
  display:block;
  font-size:25px;
  font-weight:1000;
}

.bc-logo small{
  color:var(--gold);
  font-size:14px;
  font-weight:900;
}

.bc-menu{
  display:flex;
  gap:32px;
}

.bc-menu a{
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
}

.bc-nav-btn{
  background:var(--gold);
  color:#061827;
  border:0;
  text-decoration:none;
  padding:14px 25px;
  border-radius:999px;
  font-weight:1000;
  text-transform:uppercase;
  font-size:13px;
}

.bc-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  min-height:660px;
  padding:20px 6% 80px;
  gap:40px;
}

.bc-hero-copy h1{
  margin:0;
  font-size:clamp(58px,7vw,112px);
  line-height:.88;
  font-weight:1000;
  letter-spacing:-.06em;
}

.bc-hero-copy h1 span{
  display:block;
  color:#fff;
}

.bc-hero-copy h1{
  color:var(--gold);
}

.bc-edition{
  font-family:cursive;
  font-size:clamp(34px,4vw,58px);
  color:#fff;
  margin:10px 0 20px;
  border-top:2px solid rgba(247,198,0,.7);
  border-bottom:2px solid rgba(247,198,0,.7);
  display:inline-block;
  padding:2px 30px;
}

.bc-hero-copy h2{
  max-width:720px;
  color:#fff;
  text-transform:uppercase;
  margin:0 0 15px;
  font-size:24px;
  line-height:1.2;
}

.bc-hero-copy p{
  max-width:620px;
  font-size:18px;
  line-height:1.5;
  color:rgba(255,255,255,.92);
}

.bc-hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:24px 0;
}

.bc-hero-meta span{
  border:1px solid rgba(247,198,0,.55);
  border-radius:10px;
  padding:13px 18px;
  font-weight:900;
  color:#fff;
  background:rgba(255,255,255,.06);
}

.bc-countdown{
  display:grid;
  grid-template-columns:repeat(4,92px);
  gap:10px;
  margin:18px 0 24px;
}

.bc-countdown div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  text-align:center;
  padding:12px 8px;
}

.bc-countdown strong{
  display:block;
  font-size:30px;
}

.bc-countdown span{
  font-size:11px;
}

.bc-hero-actions{
  display:flex;
  align-items:center;
  gap:20px;
}

.bc-primary{
  background:var(--gold);
  color:#061827;
  border:0;
  padding:17px 36px;
  border-radius:8px;
  font-weight:1000;
  text-transform:uppercase;
  text-decoration:none;
}

.bc-video{
  color:#fff;
  text-decoration:none;
  font-weight:900;
}

.bc-hero-photo{
  position:relative;
  min-height:540px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.bc-hero-photo img{
  width:100%;
  max-width:650px;
  height:auto;
  object-fit:contain;
  object-position:bottom center;
  border-radius:0;
  background:none;
  box-shadow:none;
}

.bc-photo-card{
  width:100%;
  height:560px;
  border-radius:26px;
  background:rgba(255,255,255,.08);
  display:grid;
  place-items:center;
  font-size:44px;
  font-weight:1000;
}

.bc-badge{
  position:absolute;
  right:22px;
  bottom:28px;
  width:165px;
  height:165px;
  background:var(--gold);
  color:#061827;
  border-radius:50%;
  display:grid;
  place-items:center;
  text-align:center;
  font-weight:1000;
  text-transform:uppercase;
  border:8px solid rgba(255,255,255,.45);
  transform:rotate(-8deg);
}

.bc-features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  color:#061827;
  padding:34px 6%;
}

.bc-features div{
  text-align:center;
  padding:15px 25px;
  border-right:1px solid #e5e7eb;
}

.bc-features span{
  font-size:44px;
}

.bc-features h3{
  text-transform:uppercase;
  margin:10px 0 8px;
  color:#061a3a;
  font-size:22px;
}

.bc-features p{
  color:#475569;
  margin:0;
  line-height:1.45;
}

.bc-expect{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  background:#061a3a;
  color:#fff;
  min-height:330px;
}

.bc-expect-list{
  padding:45px 6vw;
}

.bc-expect-list h2{
  text-transform:uppercase;
  margin:0 0 16px;
}

.bc-expect-list h2::after{
  content:"";
  display:block;
  width:54px;
  height:4px;
  background:var(--gold);
  margin-top:10px;
}

.bc-expect-list ul{
  list-style:none;
  padding:0;
  margin:0;
}

.bc-expect-list li{
  margin:10px 0;
  font-weight:700;
}

.bc-expect-list li::before{
  content:"✓";
  background:var(--gold);
  color:#061827;
  border-radius:50%;
  margin-right:10px;
  padding:1px 5px;
  font-weight:1000;
}

.bc-expect-image img,
.bc-expect-image div{
  width:100%;
  height:100%;
  min-height:330px;
  object-fit:cover;
}

.bc-expect-image div{
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  font-size:34px;
  font-weight:1000;
}

.bc-yellow-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:var(--gold);
  color:#061827;
  padding:34px 6%;
}

.bc-yellow-stats div{
  text-align:center;
  border-right:1px solid rgba(6,26,58,.18);
}

.bc-yellow-stats strong{
  display:block;
  font-size:52px;
  font-weight:1000;
  line-height:1;
}

.bc-yellow-stats span{
  display:block;
  margin-top:6px;
  font-weight:1000;
  text-transform:uppercase;
}

.bc-footer-cta{
  background:#061a3a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:42px 6%;
}

.bc-footer-cta h2{
  margin:0;
  color:#fff;
}

.bc-footer-cta p{
  margin:4px 0 0;
  color:var(--gold);
  font-family:cursive;
  font-size:24px;
}

.bc-socials{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.bc-socials a{
  background:#fff;
  color:#061827;
  text-decoration:none;
  padding:14px 22px;
  border-radius:9px;
  font-weight:1000;
}

@media(max-width:960px){
  .bc-menu{
    display:none;
  }

  .bc-hero,
  .bc-expect{
    grid-template-columns:1fr;
  }

  .bc-hero-photo{
    min-height:auto;
  }

  .bc-hero-photo img,
  .bc-photo-card{
    height:420px;
  }

  .bc-features,
  .bc-yellow-stats{
    grid-template-columns:1fr 1fr;
  }

  .bc-countdown{
    grid-template-columns:repeat(2,92px);
  }

  .bc-footer-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:560px){
  .bc-nav{
    padding:0 4%;
  }

  .bc-hero{
    padding:20px 4% 60px;
  }

  .bc-features,
  .bc-yellow-stats{
    grid-template-columns:1fr;
  }

  .bc-hero-copy h1{
    font-size:58px;
  }
}

/* Final override */
.bc-body{
  margin:0 !important;
  background:#061a3a !important;
  font-family:Inter,Arial,sans-serif !important;
}

body.bc-body .sf-header,
body.bc-body .sf-footer{
  display:none !important;
}

body.bc-body .bc-landing{
  display:block !important;
}

body.bc-body .bc-nav{
  display:flex !important;
}

body.bc-body .bc-hero{
  display:grid !important;
}

body.bc-body .bc-features{
  display:grid !important;
}

body.bc-body .bc-yellow-stats{
  display:grid !important;
}

.bc-logo-img{
  width:46px;
  height:46px;
  object-fit:contain;
  border-radius:10px;
  background:#fff;
  padding:4px;
}
.bc-expect-image{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    overflow:hidden;
}

.bc-expect-photo{
    max-width:100%;
    height:auto;
    object-fit:contain;
    display:block;
}
.bc-form-errors{
  background:#fee2e2;
  color:#991b1b;
  border:1px solid #fecaca;
  padding:14px 16px;
  border-radius:12px;
  margin-bottom:18px;
  font-weight:700;
}

.bc-form-errors ul{
  margin:6px 0 0;
}

/* =========================================================
   FINAL MOBILE-FIRST OVERRIDES - THE BIG CONVERSATION
   ========================================================= */

html {
  scroll-behavior: smooth;
}

.bc-body {
  margin: 0 !important;
  background: #061a3a !important;
  font-family: Inter, Arial, sans-serif !important;
  overflow-x: hidden;
}

.bc-nav {
  position: sticky !important;
  top: 0;
  z-index: 9999;
  background: rgba(6, 26, 58, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.bc-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.bc-menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 999px;
}

.bc-logo {
  min-width: 0;
}

.bc-logo b {
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bc-landing {
  min-height: 100vh;
}

.bc-hero-photo img {
  object-position: center top;
}

.bc-expect-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.bc-expect-photo {
  width: 520px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.bc-floating-register,
.bc-floating-whatsapp {
  position: fixed;
  right: 18px;
  z-index: 99999;
  text-decoration: none;
  font-weight: 1000;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

.bc-floating-register {
  bottom: 20px;
  background: var(--gold);
  color: #061827;
  padding: 15px 22px;
  text-transform: uppercase;
}

.bc-floating-whatsapp {
  bottom: 78px;
  background: #25D366;
  color: #061827;
  padding: 13px 18px;
}

.bc-back-link {
  display: inline-block;
  margin-bottom: 12px;
  color: #061a3a;
  font-weight: 900;
  text-decoration: none;
}

.bc-form-head p {
  margin: 8px 0 0;
  color: #64748b;
  font-weight: 700;
}

.bc-form-errors {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-weight: 700;
  overflow-x: auto;
}

.bc-form-errors ul {
  margin: 6px 0 0;
}

.bc-grid .errorlist {
  margin-top: 6px;
  background: #fee2e2;
  color: #991b1b;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
}

@media (max-width: 960px) {
  .bc-nav {
    height: auto;
    min-height: 72px;
    padding: 12px 4%;
    flex-wrap: wrap;
  }

  .bc-menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .bc-nav-btn {
    display: none;
  }

  .bc-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
    padding: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
  }

  .bc-menu.is-open {
    display: flex;
  }

  .bc-menu a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .bc-menu a:last-child {
    border-bottom: 0;
  }

  .bc-hero {
    grid-template-columns: 1fr !important;
    padding: 18px 4% 56px;
    min-height: auto;
  }

  .bc-hero-photo {
    order: -1;
    min-height: auto;
    margin-top: 10px;
  }

  .bc-hero-photo img,
  .bc-photo-card {
    height: auto;
    min-height: 280px;
    max-height: 420px;
    width: 100%;
    object-fit: cover;
    border-radius: 22px;
  }

  .bc-badge {
    width: 118px;
    height: 118px;
    font-size: 12px;
    right: 12px;
    bottom: 14px;
    border-width: 5px;
  }

  .bc-hero-copy h1 {
    font-size: clamp(46px, 14vw, 72px);
    margin-top: 18px;
  }

  .bc-edition {
    font-size: 32px;
    padding: 2px 14px;
  }

  .bc-hero-copy h2 {
    font-size: 18px;
  }

  .bc-hero-copy p {
    font-size: 16px;
  }

  .bc-hero-meta {
    flex-direction: column;
  }

  .bc-countdown {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }

  .bc-countdown div {
    padding: 10px 4px;
  }

  .bc-countdown strong {
    font-size: 24px;
  }

  .bc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bc-primary,
  .bc-video {
    text-align: center;
  }

  .bc-features,
  .bc-yellow-stats {
    grid-template-columns: 1fr 1fr !important;
    padding: 24px 4%;
  }

  .bc-features div {
    padding: 18px 10px;
  }

  .bc-expect {
    grid-template-columns: 1fr !important;
  }

  .bc-expect-list {
    padding: 34px 5%;
  }

  .bc-expect-image {
    min-height: 280px;
    background: #061a3a;
  }

  .bc-expect-photo {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
  }

  .bc-register-page {
    grid-template-columns: 1fr !important;
    padding: 22px 4% 110px;
    background: #f8fafc !important;
  }

  .bc-register-card {
    max-width: 100%;
    padding: 22px;
    border-radius: 22px;
  }

  .bc-form-head h1 {
    font-size: 34px;
  }

  .bc-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .bc-register-photo {
    order: -1;
    min-height: 240px;
  }

  .bc-register-photo img,
  .bc-photo-placeholder {
    width: 240px;
    height: 240px;
  }

  .bc-register-photo::before {
    width: 250px;
    height: 250px;
  }

  .bc-submit {
    position: sticky;
    bottom: 12px;
    z-index: 50;
  }

  .bc-footer-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 5% 100px;
  }
}

@media (max-width: 560px) {
  .bc-logo b {
    max-width: 165px;
    font-size: 17px;
  }

  .bc-logo small {
    max-width: 165px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bc-logo-icon {
    font-size: 28px;
  }

  .bc-hero-copy h1 {
    font-size: 49px;
  }

  .bc-countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-features,
  .bc-yellow-stats {
    grid-template-columns: 1fr !important;
  }

  .bc-yellow-stats strong {
    font-size: 42px;
  }

  .bc-floating-register {
    left: 16px;
    right: 16px;
    text-align: center;
    bottom: 14px;
  }

  .bc-floating-whatsapp {
    right: 16px;
    bottom: 72px;
  }
}
/* =========================================================
   FINAL HERO GREEN + FLOATING PHOTO OVERRIDE
   ========================================================= */

:root{
  --bc-green:#064b35;
  --bc-green-dark:#043526;
  --bc-green-soft:#0b5a40;
  --bc-gold:#f7c600;
}

/* Main landing background: green like the banner */
.bc-landing{
  background:
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.10), transparent 24%),
    linear-gradient(110deg, var(--bc-green-dark) 0%, var(--bc-green) 52%, var(--bc-green-soft) 100%) !important;
  min-height: calc(100vh - 0px) !important;
  position: relative !important;
  overflow: hidden !important;
}

.bc-landing::before{
  background:
    linear-gradient(90deg, rgba(4,53,38,.96) 0%, rgba(6,75,53,.88) 45%, rgba(6,75,53,.35) 100%),
    radial-gradient(circle at 80% 20%, rgba(247,198,0,.22), transparent 22%) !important;
}

/* Sticky green nav */
.bc-nav{
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  background: rgba(4,53,38,.96) !important;
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.16) !important;
}

/* Hero layout keeps text and image in the same stage */
.bc-hero{
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr minmax(420px, 640px) !important;
  align-items: center !important;
  min-height: 690px !important;
  padding: 30px 5.2% 55px !important;
  overflow: hidden !important;
}

/* Strong title like sample */
.bc-hero-copy{
  position: relative !important;
  z-index: 5 !important;
  max-width: 760px !important;
}

.bc-hero-copy h1{
  color: var(--bc-gold) !important;
  text-shadow: 0 6px 18px rgba(0,0,0,.18) !important;
}

.bc-hero-copy h1 span{
  color: #fff !important;
}

.bc-edition{
  color:#fff !important;
  border-top-color: rgba(247,198,0,.9) !important;
  border-bottom-color: rgba(247,198,0,.9) !important;
}

/* Floating photo: no card, no drop */
.bc-hero-photo{
  position: absolute !important;
  right: 5.2% !important;
  bottom: 0 !important;
  z-index: 3 !important;
  width: min(42vw, 640px) !important;
  height: 92% !important;
  min-height: 560px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  pointer-events: none !important;
}

.bc-hero-photo img{
  width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  display: block !important;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.32)) !important;
}

.bc-photo-card{
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}

/* Badge floats over image */
.bc-badge{
  right: 1vw !important;
  bottom: 74px !important;
  z-index: 6 !important;
  background: var(--bc-gold) !important;
  color:#061827 !important;
}

/* Buttons */
.bc-primary,
.bc-nav-btn,
.bc-floating-register{
  background: var(--bc-gold) !important;
  color:#061827 !important;
}

/* Meta cards */
.bc-hero-meta span{
  border-color: rgba(247,198,0,.65) !important;
  background: rgba(255,255,255,.08) !important;
}

/* Countdown */
.bc-countdown div{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.18) !important;
}

/* Tablet: photo remains behind/right, not below */
@media(max-width: 1100px){
  .bc-hero{
    grid-template-columns: 1fr !important;
    min-height: 720px !important;
    padding: 32px 5% 62px !important;
  }

  .bc-hero-copy{
    max-width: 680px !important;
  }

  .bc-hero-photo{
    right: -5vw !important;
    bottom: 0 !important;
    width: min(58vw, 560px) !important;
    height: 88% !important;
    min-height: 520px !important;
    opacity: .88 !important;
  }

  .bc-badge{
    right: 2vw !important;
    bottom: 54px !important;
  }
}

/* Mobile: photo stays as background/cutout behind text */
@media(max-width: 760px){
  .bc-landing{
    min-height: auto !important;
  }

  .bc-hero{
    display: block !important;
    min-height: 760px !important;
    padding: 30px 5% 130px !important;
  }

  .bc-hero-copy{
    position: relative !important;
    z-index: 8 !important;
    max-width: 100% !important;
  }

  .bc-hero-photo{
    position: absolute !important;
    right: -42vw !important;
    bottom: 0 !important;
    width: 102vw !important;
    height: 72% !important;
    min-height: 470px !important;
    opacity: .42 !important;
    z-index: 2 !important;
  }

  .bc-hero-photo img{
    height: 100% !important;
    width: auto !important;
    max-width: none !important;
  }

  .bc-badge{
    display: none !important;
  }

  .bc-hero-copy h1{
    font-size: clamp(48px, 16vw, 74px) !important;
  }

  .bc-edition{
    font-size: 30px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .bc-hero-copy h2,
  .bc-hero-copy p,
  .bc-hero-meta,
  .bc-countdown,
  .bc-hero-actions{
    position: relative !important;
    z-index: 9 !important;
  }

  .bc-hero-actions{
    align-items: stretch !important;
  }

  .bc-primary,
  .bc-video{
    text-align: center !important;
  }
}

/* Very small phones */
@media(max-width: 430px){
  .bc-hero{
    min-height: 720px !important;
    padding-bottom: 118px !important;
  }

  .bc-hero-photo{
    right: -58vw !important;
    width: 120vw !important;
    opacity: .34 !important;
  }

  .bc-countdown{
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* =========================================================
   THE BIG CONVERSATION - FINAL GREEN RESPONSIVE OVERRIDE
   Replaces blue with green, keeps hero photo behind text,
   improves mobile/tablet responsiveness.
   ========================================================= */

:root{
  --bc-green:#064b35;
  --bc-green-dark:#033726;
  --bc-green-mid:#07563d;
  --bc-green-soft:#0b6b4a;
  --bc-gold:#f7c600;
  --bc-white:#ffffff;
  --bc-text:#082015;
}

/* Remove blue everywhere on public portal */
.bc-body,
body.bc-body,
.bc-landing,
.bc-footer-cta,
.bc-expect,
.bc-photo-card,
.bc-success-card,
.sf-success-card{
  background:#064b35 !important;
}

.bc-landing{
  min-height:100vh !important;
  position:relative !important;
  overflow:hidden !important;
  background:
    radial-gradient(circle at 80% 18%, rgba(247,198,0,.18), transparent 23%),
    linear-gradient(110deg, var(--bc-green-dark) 0%, var(--bc-green) 52%, var(--bc-green-soft) 100%) !important;
}

.bc-landing::before{
  background:
    linear-gradient(90deg, rgba(3,55,38,.98) 0%, rgba(6,75,53,.88) 48%, rgba(6,75,53,.50) 100%),
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.10), transparent 22%) !important;
}

.bc-nav{
  position:sticky !important;
  top:0 !important;
  z-index:100000 !important;
  background:rgba(3,55,38,.97) !important;
  border-bottom:1px solid rgba(255,255,255,.12) !important;
  box-shadow:0 10px 30px rgba(0,0,0,.16) !important;
  backdrop-filter:blur(14px) !important;
}

.bc-menu,
.bc-menu a,
.bc-logo,
.bc-logo b,
.bc-logo small,
.bc-video,
.bc-footer-cta,
.bc-footer-cta h2{
  color:#fff !important;
}

.bc-logo small,
.bc-edition,
.bc-footer-cta p,
.bc-hero-copy h1{
  color:var(--bc-gold) !important;
}

.bc-hero-copy h1 span{
  color:#fff !important;
}

.bc-nav-btn,
.bc-primary,
.bc-floating-register,
.bc-submit{
  background:var(--bc-gold) !important;
  color:#082015 !important;
}

.bc-hero-meta span,
.bc-countdown div{
  background:rgba(255,255,255,.10) !important;
  border-color:rgba(247,198,0,.65) !important;
  color:#fff !important;
}

.bc-features,
.bc-register-card{
  background:#fff !important;
}

.bc-yellow-stats{
  background:var(--bc-gold) !important;
  color:#082015 !important;
}

/* Hero stage: image behind/alongside text, never drops below */
.bc-hero{
  position:relative !important;
  display:block !important;
  min-height:720px !important;
  padding:44px 5.5% 72px !important;
  overflow:hidden !important;
}

.bc-hero-copy{
  position:relative !important;
  z-index:8 !important;
  max-width:780px !important;
  padding-top:22px !important;
}

.bc-hero-copy h1{
  font-size:clamp(74px, 7.8vw, 128px) !important;
  line-height:.88 !important;
  letter-spacing:-.06em !important;
  text-shadow:0 12px 30px rgba(0,0,0,.24) !important;
}

.bc-edition{
  font-size:clamp(36px,4vw,62px) !important;
  border-top:2px solid rgba(247,198,0,.95) !important;
  border-bottom:2px solid rgba(247,198,0,.95) !important;
}

.bc-hero-photo{
  position:absolute !important;
  right:4.5% !important;
  bottom:0 !important;
  z-index:4 !important;
  width:min(43vw,650px) !important;
  height:90% !important;
  min-height:600px !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:center !important;
  pointer-events:none !important;
}

.bc-hero-photo img{
  width:100% !important;
  height:auto !important;
  max-height:100% !important;
  object-fit:contain !important;
  object-position:bottom center !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  filter:drop-shadow(0 28px 42px rgba(0,0,0,.34)) !important;
}

/* Give text readable layer over image */
.bc-hero-copy::before{
  content:"";
  position:absolute;
  inset:-24px -36px -28px -26px;
  background:linear-gradient(90deg, rgba(3,55,38,.82), rgba(3,55,38,.55), rgba(3,55,38,0));
  border-radius:26px;
  z-index:-1;
  pointer-events:none;
}

.bc-badge{
  z-index:9 !important;
  background:var(--bc-gold) !important;
  color:#082015 !important;
  right:1vw !important;
  bottom:76px !important;
}

/* What to expect section green */
.bc-expect{
  background:var(--bc-green-dark) !important;
  color:#fff !important;
}

.bc-expect-list li::before{
  background:var(--bc-gold) !important;
  color:#082015 !important;
}

.bc-expect-photo{
  width:520px !important;
  max-width:100% !important;
  height:auto !important;
  object-fit:contain !important;
}

/* Registration page green accents */
.bc-register-page{
  background:
    radial-gradient(circle at 94% 18%, rgba(247,198,0,.18), transparent 22%),
    linear-gradient(115deg, var(--bc-green-dark) 0%, var(--bc-green) 42%, #f8fafc 42%, #fff 100%) !important;
}

.bc-form-head h1{
  color:var(--bc-green-dark) !important;
}

.bc-back-link{
  color:var(--bc-green) !important;
}

.bc-register-photo::before{
  background:linear-gradient(135deg, var(--bc-gold), var(--bc-green-soft)) !important;
}

/* Tablet */
@media(max-width:1100px){
  .bc-hero{
    min-height:740px !important;
    padding:36px 5% 72px !important;
  }

  .bc-hero-copy{
    max-width:680px !important;
  }

  .bc-hero-copy h1{
    font-size:clamp(62px, 10vw, 104px) !important;
  }

  .bc-hero-photo{
    right:-7vw !important;
    width:58vw !important;
    height:84% !important;
    min-height:560px !important;
    opacity:.76 !important;
    z-index:3 !important;
  }

  .bc-badge{
    right:3vw !important;
    bottom:48px !important;
  }

  .bc-menu{
    gap:20px !important;
  }
}

/* Mobile */
@media(max-width:760px){
  html, body{
    width:100% !important;
    overflow-x:hidden !important;
  }

  .bc-nav{
    min-height:72px !important;
    padding:12px 4% !important;
    display:flex !important;
    flex-wrap:wrap !important;
  }

  .bc-menu-toggle{
    display:flex !important;
    margin-left:auto !important;
  }

  .bc-menu{
    display:none !important;
    width:100% !important;
    flex-direction:column !important;
    gap:0 !important;
    margin-top:12px !important;
    padding:8px !important;
    background:rgba(255,255,255,.10) !important;
    border:1px solid rgba(255,255,255,.12) !important;
    border-radius:16px !important;
  }

  .bc-menu.is-open{
    display:flex !important;
  }

  .bc-menu a{
    padding:14px 12px !important;
    border-bottom:1px solid rgba(255,255,255,.10) !important;
  }

  .bc-nav-btn{
    display:none !important;
  }

  .bc-hero{
    display:block !important;
    min-height:760px !important;
    padding:26px 5% 132px !important;
  }

  .bc-hero-copy{
    max-width:100% !important;
    z-index:9 !important;
    padding-top:0 !important;
  }

  .bc-hero-copy::before{
    inset:-16px -14px -20px -14px !important;
    background:linear-gradient(180deg, rgba(3,55,38,.92), rgba(3,55,38,.68), rgba(3,55,38,.30)) !important;
  }

  .bc-hero-photo{
    position:absolute !important;
    right:-48vw !important;
    bottom:0 !important;
    width:118vw !important;
    height:70% !important;
    min-height:470px !important;
    opacity:.32 !important;
    z-index:2 !important;
  }

  .bc-hero-photo img{
    height:100% !important;
    width:auto !important;
    max-width:none !important;
  }

  .bc-badge{
    display:none !important;
  }

  .bc-hero-copy h1{
    font-size:clamp(46px, 15vw, 70px) !important;
    line-height:.9 !important;
  }

  .bc-edition{
    font-size:30px !important;
    padding:2px 10px !important;
  }

  .bc-hero-copy h2{
    font-size:18px !important;
  }

  .bc-hero-copy p{
    font-size:16px !important;
  }

  .bc-hero-meta{
    flex-direction:column !important;
    gap:10px !important;
  }

  .bc-countdown{
    grid-template-columns:repeat(2,1fr) !important;
    width:100% !important;
  }

  .bc-hero-actions{
    flex-direction:column !important;
    align-items:stretch !important;
  }

  .bc-primary,
  .bc-video{
    text-align:center !important;
  }

  .bc-features,
  .bc-yellow-stats{
    grid-template-columns:1fr !important;
    padding:24px 5% !important;
  }

  .bc-expect{
    grid-template-columns:1fr !important;
  }

  .bc-expect-list{
    padding:34px 5% !important;
  }

  .bc-expect-image{
    min-height:300px !important;
  }

  .bc-expect-photo{
    width:100% !important;
    max-height:430px !important;
  }

  .bc-register-page{
    grid-template-columns:1fr !important;
    padding:22px 4% 110px !important;
    background:#f8fafc !important;
  }

  .bc-register-card{
    max-width:100% !important;
    padding:22px !important;
    border-radius:22px !important;
  }

  .bc-grid{
    grid-template-columns:1fr !important;
  }

  .bc-register-photo{
    order:-1 !important;
    min-height:240px !important;
  }

  .bc-submit{
    position:sticky !important;
    bottom:12px !important;
    z-index:50 !important;
  }

  .bc-floating-register{
    left:16px !important;
    right:16px !important;
    bottom:14px !important;
    text-align:center !important;
  }

  .bc-floating-whatsapp{
    right:16px !important;
    bottom:72px !important;
  }
}

/* Small phones */
@media(max-width:430px){
  .bc-logo b{
    max-width:170px !important;
    overflow:hidden !important;
    white-space:nowrap !important;
    text-overflow:ellipsis !important;
    font-size:17px !important;
  }

  .bc-logo small{
    max-width:170px !important;
    overflow:hidden !important;
    white-space:nowrap !important;
    text-overflow:ellipsis !important;
  }

  .bc-hero{
    min-height:740px !important;
  }

  .bc-hero-photo{
    right:-66vw !important;
    width:135vw !important;
    opacity:.28 !important;
  }

  .bc-hero-copy h1{
    font-size:48px !important;
  }
}

/* =========================================================
   FIX: EXPECT IMAGE FULL ROW + HERO IMAGE BEHIND TEXT
   ========================================================= */

/* Remove any previous grid/drop behavior */
.bc-hero{
  position:relative !important;
  display:block !important;
  min-height:720px !important;
  overflow:hidden !important;
  padding:44px 5.5% 72px !important;
}

.bc-hero-copy{
  position:relative !important;
  z-index:20 !important;
  max-width:780px !important;
}

.bc-hero-photo{
  position:absolute !important;
  right:4.5% !important;
  bottom:0 !important;
  top:auto !important;
  z-index:5 !important;
  width:min(44vw,660px) !important;
  height:90% !important;
  min-height:600px !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:center !important;
  pointer-events:none !important;
}

.bc-hero-photo img{
  width:100% !important;
  height:auto !important;
  max-height:100% !important;
  object-fit:contain !important;
  object-position:bottom center !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  filter:drop-shadow(0 26px 42px rgba(0,0,0,.36)) !important;
}

/* Text readability over image */
.bc-hero-copy::before{
  content:"" !important;
  position:absolute !important;
  inset:-28px -48px -32px -28px !important;
  background:linear-gradient(90deg, rgba(3,55,38,.92), rgba(3,55,38,.70), rgba(3,55,38,0)) !important;
  border-radius:28px !important;
  z-index:-1 !important;
}

/* What to expect: image must occupy all remaining right side */
.bc-expect{
  display:grid !important;
  grid-template-columns:420px minmax(0, 1fr) !important;
  align-items:stretch !important;
  min-height:390px !important;
  background:#033726 !important;
  overflow:hidden !important;
}

.bc-expect-list{
  padding:52px 5.8vw !important;
  z-index:2 !important;
}

.bc-expect-image{
  width:100% !important;
  height:100% !important;
  min-height:390px !important;
  display:block !important;
  overflow:hidden !important;
  background:#033726 !important;
}

.bc-expect-image img,
.bc-expect-photo{
  width:100% !important;
  height:100% !important;
  min-height:390px !important;
  max-height:none !important;
  object-fit:cover !important;
  object-position:center top !important;
  display:block !important;
}

/* Tablet: image behind text, not below */
@media(max-width:1100px){
  .bc-hero{
    min-height:720px !important;
    padding:38px 5% 82px !important;
  }

  .bc-hero-copy{
    max-width:690px !important;
  }

  .bc-hero-photo{
    right:-10vw !important;
    bottom:0 !important;
    width:66vw !important;
    height:86% !important;
    min-height:560px !important;
    opacity:.68 !important;
    z-index:4 !important;
  }

  .bc-hero-copy{
    z-index:20 !important;
  }

  .bc-expect{
    grid-template-columns:380px minmax(0, 1fr) !important;
  }
}

/* Mobile: photo becomes background behind text */
@media(max-width:760px){
  .bc-hero{
    position:relative !important;
    display:block !important;
    min-height:780px !important;
    padding:26px 5% 126px !important;
    overflow:hidden !important;
  }

  .bc-hero-copy{
    position:relative !important;
    z-index:30 !important;
    max-width:100% !important;
  }

  .bc-hero-copy::before{
    inset:-18px -14px -24px -14px !important;
    background:linear-gradient(180deg, rgba(3,55,38,.94), rgba(3,55,38,.72), rgba(3,55,38,.34)) !important;
  }

  .bc-hero-photo{
    position:absolute !important;
    right:-58vw !important;
    left:auto !important;
    bottom:0 !important;
    top:auto !important;
    width:135vw !important;
    height:72% !important;
    min-height:500px !important;
    opacity:.30 !important;
    z-index:2 !important;
    display:flex !important;
    align-items:flex-end !important;
    justify-content:center !important;
  }

  .bc-hero-photo img{
    height:100% !important;
    width:auto !important;
    max-width:none !important;
    object-fit:contain !important;
    object-position:bottom center !important;
  }

  .bc-badge{
    display:none !important;
  }

  .bc-expect{
    display:grid !important;
    grid-template-columns:1fr !important;
    min-height:auto !important;
  }

  .bc-expect-image{
    min-height:360px !important;
  }

  .bc-expect-image img,
  .bc-expect-photo{
    height:360px !important;
    min-height:360px !important;
    object-fit:cover !important;
    object-position:center top !important;
  }
}

/* Very small phones */
@media(max-width:430px){
  .bc-hero{
    min-height:760px !important;
  }

  .bc-hero-photo{
    right:-72vw !important;
    width:155vw !important;
    opacity:.26 !important;
  }

  .bc-expect-image,
  .bc-expect-image img,
  .bc-expect-photo{
    min-height:320px !important;
    height:320px !important;
  }
}

/* =====================================================
   FINAL HERO + EXPECT SECTION FIX
   ===================================================== */

/* WHAT TO EXPECT */
.bc-expect{
    display:grid !important;
    grid-template-columns:35% 65% !important;
    align-items:stretch !important;
    background:#064b35 !important;
    min-height:520px !important;
    overflow:hidden !important;
}

.bc-expect-list{
    padding:60px 55px !important;
    z-index:5 !important;
}

.bc-expect-image{
    width:100% !important;
    height:100% !important;
    overflow:hidden !important;
    position:relative !important;
}

.bc-expect-image img,
.bc-expect-photo{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center top !important;
    max-width:none !important;
    min-height:100% !important;
}

/* HERO */
.bc-hero{
    position:relative !important;
    min-height:820px !important;
    overflow:hidden !important;
}

.bc-hero-copy{
    position:relative !important;
    z-index:100 !important;
    max-width:760px !important;
}

.bc-hero-photo{
    position:absolute !important;
    right:0 !important;
    bottom:0 !important;
    width:48% !important;
    height:100% !important;
    z-index:2 !important;
    pointer-events:none !important;
}

.bc-hero-photo img{
    position:absolute !important;
    bottom:0 !important;
    right:0 !important;
    width:auto !important;
    height:92% !important;
    max-width:none !important;
    object-fit:contain !important;
}

/* TABLETS */
@media (max-width:991px){

    .bc-hero{
        min-height:760px !important;
    }

    .bc-hero-photo{
        width:70% !important;
        right:-12% !important;
        opacity:.45 !important;
        z-index:1 !important;
    }

    .bc-hero-copy{
        z-index:100 !important;
    }

    .bc-expect{
        grid-template-columns:1fr !important;
    }

    .bc-expect-image{
        min-height:420px !important;
    }
}

/* MOBILE */
@media (max-width:767px){

    .bc-hero{
        min-height:720px !important;
        padding-bottom:80px !important;
    }

    .bc-hero-copy{
        position:relative !important;
        z-index:999 !important;
    }

    .bc-hero-photo{
        position:absolute !important;
        width:130% !important;
        height:100% !important;
        right:-55% !important;
        bottom:0 !important;
        opacity:.22 !important;
        z-index:1 !important;
    }

    .bc-hero-photo img{
        height:85% !important;
        width:auto !important;
    }

    /* NEVER drop below text */
    .bc-hero-photo,
    .bc-hero-photo img{
        display:block !important;
    }

    .bc-expect{
        grid-template-columns:1fr !important;
    }

    .bc-expect-list{
        padding:35px 24px !important;
    }

    .bc-expect-image{
        min-height:360px !important;
        height:360px !important;
    }

    .bc-expect-image img,
    .bc-expect-photo{
        position:relative !important;
        height:360px !important;
        object-fit:cover !important;
    }
}


/* =====================================================
   FINAL MOBILE RESPONSIVE FIX
   ===================================================== */

html,
body{
  max-width:100% !important;
  overflow-x:hidden !important;
}

@media(max-width:760px){

  .bc-nav{
    width:100% !important;
    min-height:76px !important;
    padding:12px 16px !important;
  }

  .bc-logo{
    max-width:calc(100% - 78px) !important;
  }

  .bc-logo b{
    max-width:220px !important;
    font-size:25px !important;
    line-height:1 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }

  .bc-logo small{
    font-size:18px !important;
  }

  .bc-menu-toggle{
    width:58px !important;
    height:58px !important;
    flex-shrink:0 !important;
  }

  .bc-hero{
    position:relative !important;
    display:block !important;
    width:100% !important;
    min-height:820px !important;
    padding:48px 18px 130px !important;
    overflow:hidden !important;
  }

  .bc-hero-copy{
    position:relative !important;
    z-index:20 !important;
    width:100% !important;
    max-width:100% !important;
  }

  .bc-hero-copy h1{
    font-size:clamp(46px, 17vw, 68px) !important;
    line-height:.9 !important;
    letter-spacing:-.05em !important;
    max-width:100% !important;
    overflow-wrap:normal !important;
    word-break:normal !important;
  }

  .bc-hero-copy h1 span{
    display:block !important;
  }

  .bc-edition{
    font-size:34px !important;
    max-width:100% !important;
  }

  .bc-hero-copy h2{
    font-size:23px !important;
    line-height:1.2 !important;
  }

  .bc-hero-copy p{
    font-size:20px !important;
    line-height:1.55 !important;
    max-width:100% !important;
  }

  .bc-hero-meta{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
    gap:14px !important;
  }

  .bc-hero-meta span{
    width:100% !important;
    font-size:20px !important;
  }

  .bc-countdown{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    width:100% !important;
    gap:12px !important;
  }

  .bc-countdown div{
    width:100% !important;
  }

  .bc-hero-photo{
    position:absolute !important;
    right:-78vw !important;
    bottom:0 !important;
    width:155vw !important;
    height:66% !important;
    min-height:430px !important;
    opacity:.26 !important;
    z-index:1 !important;
    pointer-events:none !important;
  }

  .bc-hero-photo img{
    height:100% !important;
    width:auto !important;
    max-width:none !important;
    object-fit:contain !important;
    object-position:bottom right !important;
  }

  .bc-badge{
    display:none !important;
  }

  .bc-primary{
    width:100% !important;
    text-align:center !important;
  }

  .bc-video{
    text-align:center !important;
  }

  .bc-floating-register{
    left:18px !important;
    right:18px !important;
    bottom:18px !important;
    width:auto !important;
    text-align:center !important;
    padding:18px 20px !important;
    font-size:22px !important;
    border-radius:999px !important;
  }

  .bc-features{
    grid-template-columns:1fr !important;
  }

  .bc-expect{
    grid-template-columns:1fr !important;
  }

  .bc-expect-list{
    padding:36px 22px !important;
  }

  .bc-expect-image{
    width:100% !important;
    height:360px !important;
    min-height:360px !important;
  }

  .bc-expect-image img,
  .bc-expect-photo{
    width:100% !important;
    height:360px !important;
    min-height:360px !important;
    object-fit:cover !important;
    object-position:center top !important;
  }

  .bc-yellow-stats{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:390px){
  .bc-hero-copy h1{
    font-size:44px !important;
  }

  .bc-hero-copy p{
    font-size:18px !important;
  }

  .bc-hero-photo{
    right:-88vw !important;
    opacity:.22 !important;
  }
}

/* =====================================================
   FINAL MOBILE RESPONSIVE FIX
   ===================================================== */

html,
body{
  max-width:100% !important;
  overflow-x:hidden !important;
}

@media(max-width:760px){

  .bc-nav{
    width:100% !important;
    min-height:76px !important;
    padding:12px 16px !important;
  }

  .bc-logo{
    max-width:calc(100% - 78px) !important;
  }

  .bc-logo b{
    max-width:220px !important;
    font-size:25px !important;
    line-height:1 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }

  .bc-logo small{
    font-size:18px !important;
  }

  .bc-menu-toggle{
    width:58px !important;
    height:58px !important;
    flex-shrink:0 !important;
  }

  .bc-hero{
    position:relative !important;
    display:block !important;
    width:100% !important;
    min-height:820px !important;
    padding:48px 18px 130px !important;
    overflow:hidden !important;
  }

  .bc-hero-copy{
    position:relative !important;
    z-index:20 !important;
    width:100% !important;
    max-width:100% !important;
  }

  .bc-hero-copy h1{
    font-size:clamp(46px, 17vw, 68px) !important;
    line-height:.9 !important;
    letter-spacing:-.05em !important;
    max-width:100% !important;
    overflow-wrap:normal !important;
    word-break:normal !important;
  }

  .bc-hero-copy h1 span{
    display:block !important;
  }

  .bc-edition{
    font-size:34px !important;
    max-width:100% !important;
  }

  .bc-hero-copy h2{
    font-size:23px !important;
    line-height:1.2 !important;
  }

  .bc-hero-copy p{
    font-size:20px !important;
    line-height:1.55 !important;
    max-width:100% !important;
  }

  .bc-hero-meta{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
    gap:14px !important;
  }

  .bc-hero-meta span{
    width:100% !important;
    font-size:20px !important;
  }

  .bc-countdown{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    width:100% !important;
    gap:12px !important;
  }

  .bc-countdown div{
    width:100% !important;
  }

  .bc-hero-photo{
    position:absolute !important;
    right:-78vw !important;
    bottom:0 !important;
    width:155vw !important;
    height:66% !important;
    min-height:430px !important;
    opacity:.26 !important;
    z-index:1 !important;
    pointer-events:none !important;
  }

  .bc-hero-photo img{
    height:100% !important;
    width:auto !important;
    max-width:none !important;
    object-fit:contain !important;
    object-position:bottom right !important;
  }

  .bc-badge{
    display:none !important;
  }

  .bc-primary{
    width:100% !important;
    text-align:center !important;
  }

  .bc-video{
    text-align:center !important;
  }

  .bc-floating-register{
    left:18px !important;
    right:18px !important;
    bottom:18px !important;
    width:auto !important;
    text-align:center !important;
    padding:18px 20px !important;
    font-size:22px !important;
    border-radius:999px !important;
  }

  .bc-features{
    grid-template-columns:1fr !important;
  }

  .bc-expect{
    grid-template-columns:1fr !important;
  }

  .bc-expect-list{
    padding:36px 22px !important;
  }

  .bc-expect-image{
    width:100% !important;
    height:360px !important;
    min-height:360px !important;
  }

  .bc-expect-image img,
  .bc-expect-photo{
    width:100% !important;
    height:360px !important;
    min-height:360px !important;
    object-fit:cover !important;
    object-position:center top !important;
  }

  .bc-yellow-stats{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:390px){
  .bc-hero-copy h1{
    font-size:44px !important;
  }

  .bc-hero-copy p{
    font-size:18px !important;
  }

  .bc-hero-photo{
    right:-88vw !important;
    opacity:.22 !important;
  }
}
