:root{
  --hc-blue:#003F87;
  --hc-blue-dark:#062a52;
  --hc-red:#D4181C;
  --hc-gold:#F2B705;
  --hc-ink:#172033;
  --hc-muted:#64748b;
  --hc-soft:#f5f7fb;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:'Open Sans',Arial,sans-serif;
  background:#f4f6fa;
  color:var(--hc-ink);
  line-height:1.5;
  padding-bottom:0!important;
}

a{text-decoration:none;color:inherit}

.hc-v2-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(5,45,92,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.hc-v2-header-inner{
  max-width:1180px;
  margin:0 auto;
  min-height:72px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.hc-v2-brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:22px;
  font-weight:800;
}

.hc-v2-brand img{
  width:42px;
  height:42px;
  border-radius:11px;
}

.hc-v2-brand .corner{color:#ff6d70}

.hc-v2-nav{
  display:flex;
  align-items:center;
  gap:10px;
}

.hc-v2-nav-link{
  color:rgba(255,255,255,.88);
  font-size:13px;
  font-weight:700;
  padding:9px 12px;
  border-radius:9px;
}

.hc-v2-nav-link:hover{background:rgba(255,255,255,.1)}

.hc-v2-signin-link{
  border:1px solid rgba(255,255,255,.35);
}

.hc-v2-lang{
  display:flex;
  gap:3px;
  margin-left:5px;
}

.hc-v2-lang button{
  width:34px;
  height:34px;
  border:0;
  border-radius:50%;
  background:transparent;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.hc-v2-lang button.active{
  background:#fff;
  color:var(--hc-blue);
}

.hc-v2-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 30%,rgba(255,255,255,.08),transparent 28%),
    linear-gradient(120deg,#062a52 0%,#003F87 58%,#0c4f9d 100%);
  color:#fff;
  padding:36px 24px 32px;
}

.hc-v2-hero:after{
  content:'';
  position:absolute;
  right:-120px;
  bottom:-170px;
  width:430px;
  height:430px;
  border-radius:50%;
  background:rgba(212,24,28,.18);
}

.hc-v2-hero-inner{
  position:relative;
  z-index:2;
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(360px,.8fr);
  gap:44px;
  align-items:center;
}

.hc-v2-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);
  font-size:11px;
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:#fff;
}

.hc-v2-hero h1{
  margin:12px 0 12px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-1.2px;
  max-width:700px;
}

.hc-v2-hero h1 span{color:#ff6d70}

.hc-v2-hero-copy{
  max-width:650px;
  font-size:16px;
  line-height:1.55;
  color:rgba(255,255,255,.82);
}

.hc-v2-hero-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

.hc-v2-primary,
.hc-v2-secondary{
  padding:12px 20px;
  border-radius:10px;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  border:0;
}

.hc-v2-primary{
  background:var(--hc-red);
  color:#fff;
  box-shadow:0 8px 18px rgba(212,24,28,.28);
}

.hc-v2-secondary{
  background:#fff;
  color:var(--hc-blue);
}

.hc-v2-stats{
  display:flex;
  gap:34px;
  margin-top:30px;
  flex-wrap:wrap;
}

.hc-v2-stat strong{
  display:block;
  font-size:22px;
  color:#fff;
}

.hc-v2-stat span{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:rgba(255,255,255,.6);
}

.hc-v2-auth-card{
  background:#fff;
  color:var(--hc-ink);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 22px 55px rgba(0,0,0,.2);
}

.hc-v2-auth-card .hc-login,
.hc-v2-auth-card .hc-register-pane{
  padding:18px 34px 16px;
  min-height:auto;
}

.hc-v2-auth-card .hc-register{
  min-height:auto;
  padding:34px;
  background:linear-gradient(135deg,#D4181C,#b91117);
}

.hc-v2-auth-card .hc-login h2,
.hc-v2-auth-card .hc-register-pane h2{
  margin-bottom:12px;
}

.hc-v2-feature-wrap{
  max-width:1180px;
  margin:-18px auto 0;
  padding:0 24px;
  position:relative;
  z-index:4;
}

.hc-v2-section{
  padding:52px 24px;
}

.hc-v2-section.alt{
  background:#fff;
}

.hc-v2-inner{
  max-width:1180px;
  margin:0 auto;
}

.hc-v2-section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}

.hc-v2-section-head h2{
  margin:0;
  font-size:30px;
  color:#10213d;
}

.hc-v2-section-head p{
  margin:5px 0 0;
  color:var(--hc-muted);
  font-size:14px;
}

.hc-v2-viewall{
  color:var(--hc-red);
  font-size:13px;
  font-weight:800;
}

.hc-v2-explore-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.hc-v2-explore-card{
  background:#fff;
  border:1px solid #e5eaf0;
  border-radius:16px;
  padding:22px;
  box-shadow:0 3px 12px rgba(20,45,80,.05);
  transition:.18s ease;
}

.hc-v2-explore-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(20,45,80,.1);
}

.hc-v2-explore-icon{
  width:46px;
  height:46px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#edf4ff;
  color:var(--hc-blue);
  font-size:20px;
  margin-bottom:14px;
}

.hc-v2-explore-card h3{
  margin:0 0 7px;
  font-size:17px;
}

.hc-v2-explore-card p{
  margin:0;
  color:var(--hc-muted);
  font-size:13px;
  line-height:1.55;
}

.hc-v2-culture{
  margin:0 auto;
  max-width:1180px;
  border-radius:22px;
  overflow:hidden;
  background:
    linear-gradient(100deg,rgba(6,42,82,.96),rgba(0,63,135,.88)),
    url('/images/haiti-bg.jpg') center/cover no-repeat;
  color:#fff;
  padding:44px 46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.hc-v2-culture h2{
  margin:0 0 8px;
  font-size:30px;
}

.hc-v2-culture p{
  margin:0;
  color:rgba(255,255,255,.78);
  max-width:680px;
}

.hc-footer{
  position:static!important;
  background:#052d5c!important;
  padding:34px 24px!important;
  box-shadow:none!important;
  display:block!important;
  color:#fff;
}

.hc-footer-links{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  justify-content:center;
  gap:18px 28px;
  flex-wrap:wrap;
}

.hc-footer-copy{
  text-align:center;
  margin-top:18px;
  font-size:12px;
  opacity:.65;
}

.hc-events{
  background:transparent!important;
  padding:0!important;
}

.hc-events-inner{
  max-width:none!important;
}

.hc-events-header{
  display:none!important;
}

.hc-event{
  border-radius:16px!important;
  box-shadow:0 3px 13px rgba(17,37,66,.08);
  border:1px solid #e5eaf0;
}

.hc-event-img{
  height:260px!important;
}

.hc-event-meta{
  padding:16px!important;
}

@media(max-width:960px){
  .hc-v2-hero-inner{grid-template-columns:1fr}
  .hc-v2-hero h1{font-size:42px}
  .hc-v2-explore-grid{grid-template-columns:repeat(2,1fr)}
  .hc-v2-auth-card{max-width:620px}
}

@media(max-width:700px){
  .hc-v2-header-inner{padding:0 16px}
  .hc-v2-nav-link{display:none}
  .hc-v2-hero{padding:38px 16px 32px}
  .hc-v2-hero h1{font-size:34px}
  .hc-v2-feature-wrap{padding:0 16px}
  .hc-v2-section{padding:38px 16px}
  .hc-v2-explore-grid{grid-template-columns:1fr}
  .hc-v2-culture{
    margin:0 16px;
    padding:32px 24px;
    flex-direction:column;
    align-items:flex-start;
  }
  .hc-v2-section-head{align-items:flex-start;flex-direction:column}
}


/* =========================================================
   HC FRONT PAGE — COMPACT AUTH CARD
   ========================================================= */

.hc-v2-auth-card{
  max-width:520px;
}

/* White login section */
.hc-v2-auth-card .hc-login{
  padding:18px 38px 16px !important;
}

.hc-v2-auth-card .hc-login h2{
  margin:0 0 12px !important;
  font-size:22px !important;
}

/* Social buttons */
.hc-v2-auth-card .hc-social-row{
  margin-bottom:12px !important;
}

.hc-v2-auth-card .hc-social-btn{
  width:40px !important;
  height:40px !important;
}

/* Divider */
.hc-v2-auth-card .hc-divider{
  margin:12px 0 12px !important;
}

/* Form fields */
.hc-v2-auth-card .hc-field{
  margin-bottom:11px !important;
}

.hc-v2-auth-card .hc-field label{
  margin-bottom:6px !important;
}

.hc-v2-auth-card .hc-field input{
  min-height:40px !important;
  padding:8px 13px !important;
}

/* Remember me / Sign in */
.hc-v2-auth-card .hc-checkbox-row{
  margin-top:8px !important;
}

/* Forgot username/password */
.hc-v2-auth-card .hc-forgot-row{
  margin-top:22px !important;
  padding-bottom:0 !important;
}


/* RED REGISTER SECTION */
.hc-v2-auth-card .hc-register{
  padding:28px 38px 30px !important;
  min-height:0 !important;
}

.hc-v2-auth-card .hc-register h2{
  margin:0 0 10px !important;
  font-size:25px !important;
}

.hc-v2-auth-card .hc-register p{
  margin:0 auto 18px !important;
  line-height:1.45 !important;
  max-width:390px;
}

.hc-v2-auth-card .hc-register-btn{
  padding:11px 30px !important;
  min-height:44px !important;
}


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

  .hc-v2-auth-card .hc-login{
    padding:26px 24px 24px !important;
  }

  .hc-v2-auth-card .hc-register{
    padding:24px 24px 26px !important;
  }

  .hc-v2-auth-card .hc-login h2{
    font-size:24px !important;
  }

  .hc-v2-auth-card .hc-register h2{
    font-size:23px !important;
  }
}


/* =========================================================
   HC FRONT PAGE — WIDER DESKTOP HEADER
   ========================================================= */

@media (min-width:901px){

  .hc-v2-header-inner{
    max-width:none !important;
    width:100% !important;
    padding-left:42px !important;
    padding-right:42px !important;
  }

  .hc-v2-brand{
    margin-right:auto !important;
  }

  .hc-v2-nav{
    margin-left:auto !important;
    justify-content:flex-end !important;
  }

}
